StrReplace
Replace within string
Definition
Searches for a set sub string in a string and replaces this sub string with another.
If the search is not unique
the string is replaced starting on the left and going forward.
Example: The string is AHAHAHA.
Search for AHA and Replace with NOO
results in a string NOOHNOO.
Wildcards are not supported!
Settings
Input
- String
The string in which characters should be replaced. - Find
Substring that is being sought. The string is searched starting from the left. - Replace
with
The found substring is replaced with this string. - Store
result in
A variable that collects the changed string.