BjS-RegExp-Tester
Text source:
RegExp:
Help >
Case Insensitive
Global
Multiline
Result:
Replace:
RegExp copy:
RegExp:
X
^
Start of string (or of line with Multiline)
$
End of string (or of line with Multiline)
(...)
RegExp-Group
[...]
include Char-Group
[^...]
exclude Char-Group
?
can exist
*
exists 0 or more times
+
exists 1 or more times
(?=...)
a positive look-ahead
(?!...)
a negative look-ahead
.
Any char exept newline
\\
A single \
\b
A word-boundary char
\B
A not-word-boundary char
\0
A null char
\n
Newline
\f
A form-feed char
\r
A carriage return char
\t
A tabulator char
\v
A vertical tabulator char
\###
A char by octal number
\x##
A ASCII char char by hex number
\u####
A unicode char by hex number
\w
A alphanumeric char [a-zA-Z0-9_]
\W
A non-alphanumeric char [^a-zA-Z0-9_]
\d
A digit char [0-9]
\D
A non-digit char [^0-9]
\s
A white-space char [ \t\r\n\v\f]
\S
A non-white-space char [^ \t\r\n\v\f]
Replace:
$#
RegExp-Gruppe # einfügen