User Tools

Site Tools


en:replacex

Replacex (Function)

Formato

Description

Return a new string where all occurrences of substrings matching the regular expression regular_expression are replaced by string_expression in the string haystack_string_expression.

Example

a$ = "Ouvi bossa e saí da fossa"
print Replacex(a$,"bossa","sopa")
print Replacex(a$, "[bf]ossa", "sopa")

will display

Ouvi sopa e saí da fossa
Ouvi sopa e saí da sopa

Notes

By default the nature of regular expressions is “greedy”. This behaviour can be changed using the RegexMinimal statement.

See Also

History

0.9.6.56New to Version
en/replacex.txt · Last modified: 2020/02/28 10:46 (external edit)