Searches one string into another string and replaces all occurences with a blank character.
Example: VFPToolkit.strings.StrTran("Joe Doe", "o"); //returns "J e D e" :)
public static string StrTran( string SearchIn, string SearchFor );
Return Value
string
Parameters
SearchIn
SearchFor
Overloads:
public static string StrTran( string cSearchIn, string cSearchFor, string cReplaceWith );
public static string StrTran( string cSearchIn, string cSearchFor, string cReplaceWith, bool ReplaceFirstOnly );
See also:
Class wwUtils© West Wind Techologies, 1996-2023 • Updated: 07/31/07
Comment or report problem with topic