Wikia

Programmer's Wiki

Regular expression

Talk0
385pages on
this wiki

Regular expressions are string expressions which are used to identify matching patterns in other strings. Many languages and environments implement regular expressions, often with small differences. Regular expressions first gained large-scale use on unix systems in conjunction with tools such as grep, awk, and sed.

Contents

Simple Examples Edit

Example 1. literal (no special characters used) Edit

hello

Matches the string "hello" only.


Example 2. any character. Edit

the "." character matches any character except newline (\n).

an.

Matches "an!", "and"

Example 3. zero-or-more characters. Edit

the "*" character matches any string zero or more of the character immediately preceding it.

hel*

Matches "hel", "hellll"

External Links Edit

See Also Edit

Advertisement | Your ad here

Photos

Add a Photo
28photos on this wiki
See all photos >

Recent Wiki Activity

See more >

Around Wikia's network

Random Wiki