[RegExp] Ganzes Wort negieren

queicherius

♥ PHP ♥
Ich habe mich jetzt schon ein bisschen länger mit Regular Expressions beschäftigt und habe ein interessantes Problem:

Wie kann ich in einer RegExp ein ganzes Wort negieren? So auf die Art: Es darf alles vorkommen außer xyz?
 
Leider nicht :(

Code:
[^(Wort)]*

Geht auch nicht, da es da zum Beispiel beim r aufhört :(

Zu deinem Link

/[^$chars]*/ matches as many characters as possible, as long as none match the character class.
/(?:(?!$re).)*/ matches as many characters as possible, as long as no subsequence of them match the regexp.

SUPER!

Code:
(?:(?!</span>).)*

Das hats bei mir gebracht :)
 
Zurück