Definitions | regular expression |
| noun
- (computing) A concise description of a pattern to be matched during a string search. The pattern is written according to one of several small formal languages devised for this purpose, and may call for matching fixed strings, runs of arbitrary characters, characters selected from a set, alternate words, and other specifics.
- Example: "<code>^Tthis is .
- test</code>" is a regular expression which matches the string "This is", followed by an arbitrary string of characters, followed by the word "test". The matched string must begin at the beginning of the line. The word "this" may be capitalized or not. The notation "<code>.
- </code>" matches any number (0 or more) of any character.
Translations: - Spanish: expresión regular
(trans-bottom)
Supplemental Details:Sponsor an extended definition for regular expression for as little as $10 per month. Click here to contact us.
| |
|