computer linux gamedevelopment qwerkop

Inhaltsverzeichnis




Exaktes matching auf ein Wort

/Auto/ matcht Auto



Exaktes matching auf ein Wort (Groß/Klein -schreibung ignorieren) mit dem Flag i

/Auto/i matcht aUtO



Matching auf ein Wort das irgendwo vorkommt

/anlagen/i matcht Automationsanlagenbetreiber



Matching auf ein Wort das irgendwo vorkommt und durch Lehrstellen separiert ist mit \s

/\sanlagen\s/i matcht Automations Anlagen Betreiber



Matching auf ein Wort das am Anfang vorkommt mit ^

/^auto/i matcht Autosalon



Matching auf ein Wort das am Ende vorkommt mit $

/salon$/i matcht Autosalon



Matching auf ein Wort in dem ein Zeichen 0 oder Mehrmals vorkommt mit *

/auto*s/i matcht Autoooooooooooooooooooooos



Matching auf ein Wort in dem ein Zeichen genau 4 mal vorkommt mit {}

/auto{4}s/i matcht Autoooos



Matching auf ein Wort oder eine alternative des Wortes mit |

/auto|tier/i matcht tier oder auto



Modifikatoren nur auf einen Teilstring beziehen

/((?i)murmel)tier/ matcht MURMELtier
Notice: Undefined variable: sRes in /is/htdocs/wp1019198_1N13WZSOEQ/qwerkop_de/qwerkop-computer-regular-expression.php on line 216




Rückgabe von Subpatterns

/(murmel)tier/ matcht murmeltier Array ( [0] => murmeltier [1] => murmel )



Rückgabe von Subpatterns unterdrücken mit ?:

/(?:murmel)tier/ matcht murmeltier Array ( [0] => murmeltier )



Innerhalb des Patterns auf Subpatterns zugreifen

/(enten)(murmel)tier\1\2/ matcht entenmurmeltierentenmurmel

Das Array enthält folgende Submatches:
Array ( [0] => entenmurmeltierentenmurmel [1] => enten [2] => murmel )



Maching auf Vokale (Groß/Klein -schreibung ignorieren)

/(?i)[ab]/ matcht erstes Vorkommen von a oder b




Maching auf NICHT-Vokale (Groß/Klein -schreibung ignorieren)

/[^aeiou]/i matcht ersten Buchstaben der nicht a, e, i oder u ist



Inhalt zwischen Tags matchen

/\<a\>.*\<\/a\>/is matcht <a>www.auto.de</a><a>www.tier.de</a>
<a>www.auto.de</a><a>www.tier.de</a>

Notice: Undefined offset: 1 in /is/htdocs/wp1019198_1N13WZSOEQ/qwerkop_de/qwerkop-computer-regular-expression.php on line 321




Inhalt zwischen Tags matchen und dabei nicht gierig sein mittels Modifikator U

/\<a\>.*\<\/a\>/iU matcht <a>www.auto.de</a>
<a>www.auto.de</a>