The QMField() function extracts one or more components of a delimited string.
Format
VB | QMField(ByVal Src as String, ByVal Delimiter as String, ByVal Start as Long, |
Optional ByRef Occurrences as Long) as String
C | char * QMField(char * Src, char * Delimiter, int Start, int Occurrences) |
where
Src | is the string to be processed. |
Delimiter | is the single character delimiter separating components of the string. |
Start | is the number from one of the first component of Src to be returned. |
Occurrences | is the number of delimited of components of Src to be returned. If omitted (VB only) or less than one, one component is returned. |
The QMField() function returns the specified substring components of Src.
|