Meta Characters
Character  | Description  | 
|---|---|
  | Match a   | 
  | Match at the beginning of the input. Differs from   | 
  | Match if the current position is a word boundary. Boundaries occur at the transitions between word (  | 
  | Match a   | 
  | Match if the current position is not a word boundary.  | 
  | Match a control-X character.  | 
  | Match any character with the Unicode General Category of   | 
  | Match any character that is not a decimal digit.  | 
  | Match an   | 
  | Terminates a   | 
  | Match a   | 
  | Match if the current position is at the end of the previous match.  | 
  | Match a   | 
  | Match the named character.  | 
  | Match any character with the specified Unicode Property.  | 
  | Match any character not having the specified Unicode Property.  | 
  | Quotes all following characters until   | 
  | Match a   | 
  | Match a white space character. White space is defined as   | 
  | Match a non-white space character.  | 
  | Match a   | 
  | Match the character with the hex value   | 
  | Match the character with the hex value   | 
  | Match a word character. Word characters are   | 
  | Match a non-word character.  | 
  | Match the character with hex value   | 
  | Match the character with two digit hex value   | 
  | Match a Grapheme Cluster. Partial implementation for ICU 2.4, does not handle Hangul syllables.  | 
  | Match if the current position is at the end of input, but before the final line terminator, if one exists.  | 
  | Match if the current position is at the end of input.  | 
  | Match the character with octal value   | 
  | Back Reference. Match whatever the nth capturing group matched.   | 
  | Match any one character from the set. See UnicodeSet for a full description of what may appear in the pattern.  | 
  | Match any character.  | 
  | Match at the beginning of a line.  | 
  | Match at the end of a line.  | 
  | Quotes the following character. Characters that must be quoted to be treated as literals are   | 
Related Content
Related Pages: