Advertisement
Guest User

Untitled

a guest
Apr 18th, 2014
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. [BN_D]hostName=localhost
  2.  
  3. hostName=localHost
  4.  
  5. ...
  6. my $str = "[BN_D]hostName=localhost";
  7. $str =~ s|^[w+]||;
  8. print $str;
  9. ...
  10.  
  11. hostName=localhost
  12.  
  13. '[BN_D]hostName=localhost' =~ s/[.*?]//r
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement