| Applying science to business management |
  
substitute
Format: substitute( text, substring, rep )
Arguments: (text) text Input text string
(text) substring Target substring to replace
(text) rep Replacement text
Returns: (text) text with all occurrences of substring
replaced by rep
Examples: substitute("line
of text"," ","-") = line-of-text
substitute("line of
text","line","bit") = bit of text
See Also: replace
|