Difference between revisions of "Regex regular expressions"

From Ever changing code
Jump to navigation Jump to search
(Created page with "= General expressions = + -unlimited string \ -escape/protect character /[abc]+/ -matches a bb ccc = Websense = It accepts reg expresions with limited form example: *<tt>(...")
 
Line 3: Line 3:
  \ -escape/protect character
  \ -escape/protect character
  /[abc]+/ -matches a bb ccc
  /[abc]+/ -matches a bb ccc
= PCRE Perl Compatible Regular Expressions =
regex like [\r\n]+ matches CRLF in Notepad ++


= Websense =
= Websense =

Revision as of 10:36, 25 January 2017

General expressions

+ -unlimited string
\ -escape/protect character
/[abc]+/ -matches a bb ccc

PCRE Perl Compatible Regular Expressions

regex like [\r\n]+ matches CRLF in Notepad ++

Websense

It accepts reg expresions with limited form example:

  • (.) -same as * wildcard matches any lengh of string and brackets are RegEx delimiters

References