Guest User

Untitled

a guest
Jul 18th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <?php
  2.  
  3. $aTag = '<a href="news-test/ams-list-dev.html#c131546" class="fancy-link" rel="131546">';
  4.  
  5.  
  6. $regex = '/(href="[^#]+(#[A-Za-z0-9]+)")/';
  7.  
  8. if(preg_match($regex,$string,$matches)) {
  9. $search = $matches[0];
  10. $replace = 'href="'.$matches[2].'"';
  11. $newATag = str_replace($search,$replace,$string);
  12. }
  13.  
  14.  
  15.  
  16. ?>
Add Comment
Please, Sign In to add comment