matching everything but a word using ^ and preg_replace

This is a discussion on matching everything but a word using ^ and preg_replace within the PHP Language forums, part of the PHP Programming Forums category; I can't fing a way, to match any characters except the phrase 'foo'. Using [^abc]+ matches any character except ...


Go Back   Usenet Forums > PHP Programming Forums > PHP Language

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 09-13-2003
Daniel Kończyk
 
Posts: n/a
Default matching everything but a word using ^ and preg_replace

I can't fing a way, to match any characters except the phrase 'foo'.
Using [^abc]+ matches any character except a, b or c, but I need to not
match 'foo', because f is ok, o is ok, but foo - 3 letters at once not

Any clue?

Thanks

--
Daniel Kończyk
http://konczyk.net
Reply With Quote
  #2 (permalink)  
Old 09-13-2003
CC Zona
 
Posts: n/a
Default Re: matching everything but a word using ^ and preg_replace

In article <slrnbm6lr2.b6.drmartens@gnu.univ.gda.pl>,
Daniel KoŸczyk <drmartens@voruta.eu.0rg> wrote:

> I can't fing a way, to match any characters except the phrase 'foo'.
> Using [^abc]+ matches any character except a, b or c, but I need to not
> match 'foo', because f is ok, o is ok, but foo - 3 letters at once not
>
> Any clue?


If you just want to match "some pattern when not followed by 'foo'" or
"some pattern when not preceded by 'foo'", then you're looking for
lookahead or lookbehind syntax. See the section on "Assertions" in <http://us4.php.net/manual/en/pcre.pattern.syntax.php>. For instance, here's two of their examples:

*foo(?!bar)

*****matches*any*occurrence*of*"foo"**that**is**no t**followed**by
*****"bar"


*(?<!foo)bar

*****does*find*an*occurrence*of*"bar"*that**is**no t**preceded**by
*****"foo"

--
CC
Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT +1. The time now is 05:53 AM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0