Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. $str="test content %list:UnsubscriptionLink% some other %list:subscriptionLink% test";
  2.  
  3. $str="test content # some other # test";
  4.  
  5. $str="test content %list:UnsubscriptionLink% some other test";
  6. echo preg_replace('~(%.*%)~','#',$str); //Its working
  7.  
  8. $str="test content %list:UnsubscriptionLink% some other %list:UnsubscriptionLink% test";
  9. echo preg_replace('~(%.*%)~','#',$str); //Its Not working
  10.  
  11. <?php
  12. $str="test content %list:UnsubscriptionLink% some other %list:UnsubscriptionLink% test";
  13. echo preg_replace('~(%[^%]+%)~','#',$str);
  14.  
  15. test content # some other # test
  16.  
  17. ~%[^%]+%~
  18.  
  19. <?php
  20. $str="test content %list:UnsubscriptionLink% some other %list:UnsubscriptionLink% test";
  21. echo preg_replace('~%[^%]+%~','#',$str);
  22. ?>
  23.  
  24. test content # some other # test
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement