Register to post in forums, or Log in to your existing account
 

 Related 
Contents
See also:
  Match
  RegReplace
  Regular Expressions
String Library
  Pos
  SubStr
  Len
  Replace
  Left
  Right
  Upper
  Lower
  Proper
  IntVal
  FloatVal
  Format
  Insert
  Delete
  Concat
  LeftBack
  RightBack
  Word
  NumWord
  DeleteNWord
  Begins
  Ends
  ASCII
  IsInt
  IsFloat
  RepeatStr
  Trim
  LTrim
  RTrim
  Explode
  Join
  Match
  RegReplace
  StripTags
  EncodeHTML
  DecodeHTML
  Reverse
  Compare
  HexStr
  HexVal
  QuoteSQL
  EncodeURL
  DecodeURL
  ExtractFileName
  ExtractFileExt
  ExtractPath
  Pad
  PadRight
  Center
  Soundex
  Wordwrap
  DecimalSeparator
  CaseSens
  QuoteChar
  Regular Expression Options
  Regular Expressions
  Split
  ExpandTabs
  md5
  ForceFileExt
  LoadFromFile
  SaveToFile
  cr
  lf
  crlf
Related Links:
  Match
  RegReplace
Regular Expression Options [[RegExOptions]] 
NOTE: This Design document is subject to change at any time.
This string value is a list of characters to control options for regular expression matching. These are also known as "Perl Trailing Options" and are compatible with those character options commonly used in Perl and PHP trailing expressions. Note that these character options are case sensitive. Here is the function of each character option:

i
Makes the pattern match case insensitive. (PCRE_CASELESS)
s
Makes the period (.) match any character, including newline (\n). (PCRE_DOTALL)
m
Allows the ^ and $ anchoring patterns to match internal newlines. (PCRE_MULTILINE)
x
Ignores whitespace and comments (characters between # symbols) in the pattern (PCRE_EXTENDED)
e
When using RegExReplace, the replacement string is evaluated using the default scripting language to get the final string.
U
Reverses the greediness of the subpattern. * and + now match as little as possible instead of as much as possible. (PCRE_UNGREEDY)
A
Causes the beginning of the string to be anchored as if the first character in the pattern was a ^ symbol. (PCRE_ANCHORED)
D
Causes the $ character to match only at the end of line and not a \n at the end of the line (ignored if the Multiline m option is used). (PCRE_DOLLAR_ENDONLY)
g
Prevents the empty string from being considered a valid match in the pattern. (PCRE_NOTEMPTY)
a
Causes the RegReplace function to replace ALL occurences of the match instead of just the first.
Viewer Comments [0 - Post your comments]

Jump to:  

© 2009 Zugg Software. Hosted by Wolfpaw.net