VirtualString.Replace(String stringToReplace, String replacementString, Variable replaceType)
|
String
|
Returns a modified copy of the calling VirtualString in which occurences of stringToReplace have been replaced with replacementString. When replaceType is "All" every occurence is replaced. When replaceType is "First" or "Last" only the first or last occurence is replaced respectively.
|
VirtualString.Replace(String stringToReplace, String replacementString, Variable replaceType, Variable replaceCount)
|
String
|
Returns a modified copy of the calling VirtualString in which occurences of stringToReplace have been replaced with replacementString and stores the number of replacements made in replaceCount. When replaceType is "All" every occurence is replaced. When replaceType is "First" or "Last" only the first or last occurence is replaced respectively.
|