replaceRegex method
replaceRegex(pattern, replacement)
Replaces all occurrences of a character pattern specified by a regular expression with another string.
replaceRegex(pattern: string, replacement: string)
Parameter | Type | Description |
---|---|---|
pattern | string | A regular expression pattern used to find matches. |
replacement | string | A string to replace all occurrences of pattern. |
Remarks
Replaces the whole match captured by the regular expression.
Method is able to process breaks in both pattern and replacement strings.
You should use special meta-characters if you need to work with breaks:
&p - paragraph break
&b - section break
&m - page break
&l - manual line break
Use methodRange.replaceRegex() to have more flexible customization.
Returns
The number of replacements made.
replaceRegex(pattern, replacement, options)
Replaces all occurrences of a character pattern specified by a regular expression with another string.
replaceRegex(pattern: string, replacement: string, options: Aspose.Words.Replacing.FindReplaceOptions)
Parameter | Type | Description |
---|---|---|
pattern | string | A regular expression pattern used to find matches. |
replacement | string | A string to replace all occurrences of pattern. |
options | FindReplaceOptions | FindReplaceOptions object to specify additional options. |
Remarks
Replaces the whole match captured by the regular expression.
Method is able to process breaks in both pattern and replacement strings.
You should use special meta-characters if you need to work with breaks:
&p - paragraph break
&b - section break
&m - page break
&l - manual line break
&& - & character
Returns
The number of replacements made.
See Also
- module Aspose.Words
- class Range