RegEx: Unterschied zwischen den Versionen
Aus informatikvs
Zeile 46: | Zeile 46: | ||
|- | |- | ||
|\> || End of | |\> || End of | ||
+ | |} | ||
+ | |||
+ | == Quantifiers == | ||
+ | {| class="wikitable" | ||
+ | ! Quantifier !! Legend !! Example !! Sample Match | ||
+ | |- | ||
+ | | + || One or more || Version \w-\w+ || Version A-b1_1 | ||
+ | |- | ||
+ | | {3} || Exactly three times || \D{3} || ABC | ||
+ | |- | ||
+ | | {2,4} || Two , three or four times || \d{2,4} || 156 | ||
+ | |- | ||
+ | | {3,} || Three or more times || \w{3,} || regex_tutorial | ||
+ | |- | ||
+ | | * || Zero or more times || A*B*C* || AAACC | ||
+ | |- | ||
+ | | ? || Once or None || plurals? || plural | ||
|} | |} |
Version vom 12. Mai 2017, 10:48 Uhr
... können als Filterkriterien in der Textsuche verwendet werden, indem der Text mit dem Muster des regulären Ausdrucks abgeglichen wird. (Pattern Matching)
Potpourri
\d | [0..9] = [0123456789] |
\D | all but digits - Gegenteil \d |
\s | whitespaces |
\S | any "black" character - Gegenteil \s |
\w | word characters (a-z, 0-9,_) |
\W | any non-\w |
* | Zeichen ist NULL oder mehrmals hintereinander im String enthalten |
? | Zeichen ist kein oder einmal im String enthalten |
{n} | Zeichen ist genau n-mal hintereinander im String enthalten |
{n,m} | Zeichen ist mindestens n, höchstens m-mal hintereinander im String enthalten |
{n,} | Zeichen ist mindestens n-mal hintereinander im String enthalten |
[A-Za-z] | only letters |
[^…] | any character other than ... |
Anchors
^ | Start of string / line |
\A | Start of string |
$ | End of string / line |
\Z | End of string |
\b | Word boundary |
\B | Not ... |
\< | Start of word |
\> | End of |
Quantifiers
Quantifier | Legend | Example | Sample Match |
---|---|---|---|
+ | One or more | Version \w-\w+ | Version A-b1_1 |
{3} | Exactly three times | \D{3} | ABC |
{2,4} | Two , three or four times | \d{2,4} | 156 |
{3,} | Three or more times | \w{3,} | regex_tutorial |
* | Zero or more times | A*B*C* | AAACC |
? | Once or None | plurals? | plural |