The original words

$string = '<a href="/home/top">here is some text</a>. <a href="/links/abc">some links here</a>...';
//more links and other html. more link like <a href="/home/below">, <a href="/links/def">...

I need change to

<a href="/links/abc"> => <a href="#" onclick="link('abc|123')">
<a href="/links/def"> => <a href="#" onclick="link('def|123')">
<a href="/links/ghi"> => <a href="#" onclick="link('ghi|123')">

I tried to use str_replace, but it just easy to replace <a href=" to <a href="#" onclick="link(' and hard to judge the next part. but how to deal with these replace? Thanks.

link|improve this question

1  
you can use preg_replace with a regular expression. there are many tutorials for this topic. php.net/manual/en/function.preg-replace.php and phpf1.com/tutorial/php-regular-expression.html – Fender Jul 5 '11 at 8:41
@Fender, can u write it for me? Thanks. – fish man Jul 5 '11 at 8:42
feedback

2 Answers

up vote 1 down vote accepted

You can use preg_replace():

$string = preg_replace('%href="/links/(.+?)"%', 'href="#" onclick="link(\'$1|123\')"', $string);
link|improve this answer
feedback

pattern: $pattern = '@<a href=\"/links/([a-zA-Z0-9]*)\">@is';

replace: $replace = '<a href="#" onclick="link(\'\1|123\')">';

call: $result = preg_replace($pattern, $replace, $string);

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.