Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. $string = preg_replace('/W+$/', '', $string); // converts `#str|ng#` to `#str|ng`
  2.  
  3. $string = preg_replace('/^W+/', '', $string); // converts `#str|ng#` to `str|ng#`
  4.  
  5. $string = preg_replace('/^W+|W+$/', '', $string);
  6.  
  7. $string = preg_replace('/^[W_]+|[W_]+$/', '', $string);
  8.  
  9. $string = trim($string, "#");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement