Tutorial by Topics: regexp

preg_replace($pattern, $replacement, $subject, $limit = -1, $count = 0); preg_replace_callback($pattern, $callback, $subject, $limit = -1, $count = 0); preg_match($pattern, $subject, &$matches, $flags = 0, $offset = 0); preg_match_all($pattern, $subject, &$matches, $flags = PREG_PATTERN...
new Regex(pattern); //Creates a new instance with a defined pattern. Regex.Match(input); //Starts the lookup and returns the Match. Regex.Matches(input); //Starts the lookup and returns a MatchCollection NameDetailsPatternThe string pattern that has to be used for the lookup. For more info...
If you want more than a simple string replacement with common regular expressions you certainly run into trouble and hit the wall when discovering the limits of the regex functions Coldfusion has. There is no build-in function like php's preg_replace_callback. ParameterDetailsreThe regular expr...

Page 1 of 1