Receives a string along with starting and ending delimiters and returns the part of the string between the delimiters
Example: string cExpression = "JoeDoeJoeDoe"; VFPToolkit.strings.StrExtract(cExpression, "o", "eJ"); //returns "eDo"
public static string StrExtract( string cSearchExpression, string cBeginDelim, string cEndDelim );
Return Value
string
Parameters
cSearchExpression
cBeginDelim
cEndDelim
Overloads:
public static string StrExtract( string cSearchExpression, string cBeginDelim, string cEndDelim, int nBeginOccurence, int nFlags );
public static string StrExtract( string cSearchExpression, string cBeginDelim );
public static string StrExtract( string cSearchExpression, string cBeginDelim, string cEndDelim, int nBeginOccurence );
See also:
Class wwUtils© West Wind Techologies, 1996-2023 • Updated: 07/31/07
Comment or report problem with topic