Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
385 views
in Technique[技术] by (71.8m points)

php - Preg_replace match on word boundery and not in link

I'm trying to write a regex to match words on boundery and because text is in html I need to avoid words that are in <a>here more words</a>.

My regex for now is: /word/u

Example text:

<p>Example lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur <a href="">porta lorem nec</a> tortor laoreet gravida.</p>

Searching for word lorem should be replaced only at the beginning, not in <a>.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You could use some dark powers like the following:

<a[^>]*>.*?</as*>(*SKIP)(*FAIL)|lorem

Let's break it down:

<a[^>]*>            # match an opening "a" tag
.*?                 # match anything ungreedy until ...
</as*>             # match a closing "a" tag
(*SKIP)(*FAIL)      # skip it
|                   # or
lorem           # match lorem with boundaries

So basically we first skip all a tags, then we match lorem.

See a working demo


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...