strrep
Replaces strings in another.
📝Syntax
res = strrep(str, old, new)
📥Input Arguments
Parameter Description
str a string, string array or cell of strings.
old a string, string array or cell of strings to find.
new a string, string array or cell of strings.
📤Output Arguments
Parameter Description
res a string, string array or cell of strings.
📄Description

replace replaces strings in another.

replace and strrep replace strings but replace is recommended.

💡Examples
r = strrep('This is a string.', 'is', 'is not')
r = strrep({'cccc','ccbbcca'},{'cc','bb'},{'cc'})
r = strrep("This is a string.", "is", 'is not')
🔗See Also
replace
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub