replaceText | |||||||||||||
Type | function | ||||||||||||
Dictionary | LCS | ||||||||||||
Library | LiveCode Script | ||||||||||||
Syntax |
| ||||||||||||
Summary | Searches for a regular expression and replaces the portions that match the regular expression. | ||||||||||||
Introduced | 1.0 | ||||||||||||
OS | mac, windows, linux, ios, android | ||||||||||||
Platforms | desktop, server, mobile | ||||||||||||
Parameters |
| ||||||||||||
Example |
| ||||||||||||
Values |
| ||||||||||||
Related | Keyword: string Property: caseSensitive Command: replace, filter Glossary: command, regular expression, property | ||||||||||||
Description | Use the replaceText function to search for and replace text that matches a particular pattern. The replaceText function replaces all the occurrences of the matchExpression with the replacementString. If more than one matching substring is found, the replaceText function replaces all of them. The replaceText function is not as fast as the replace command, but is more flexible because you can search for any text that matches a regular expression. The stringToChange and matchExpression are always case-sensitive, regardless of the setting of the caseSensitive property. (If you need to make a case-insensitive comparison, use "(?i)" at the start of the matchExpression to make the match case-insensitive.)
| ||||||||||||
Tags | text processing |