wwUtils::AParseString

Parses a delimited string into an array by passing a delimiter to be used to split the string.

AParseString(@laResult, lcString, lcDelimiter)

numeric - count of split strings

Parameters

@laResult
Array that's to receive the de-parsed strings.

lcString
The full string to parse.

lcDelimiter
The delimiter to split the string by. Default: ,

Example

foxpro
foxpro
lcString = "Rick,John,Markus,Ron" DIMENSION aNames[1] lnCount = AParseString(@aNames,lcString,",") FOR x=1 TO lnCount ? aNames[x] ENDFOR

See also

Library wwUtils

© West Wind Technologies, 2025 • Updated: 2025-03-12
Comment or report problem with topic