wwUtils.StrExtract

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:


See also:

Class wwUtils

© West Wind Techologies, 1996-2023 • Updated: 07/31/07
Comment or report problem with topic