PARTSCOUNT(Expr, DelimChar='|')
Returns the number of delimited parts contained in Expr. The default delimiter is assumed if the second optional parameter is omitted.
E.g. PARTSCOUNT('one|two|three') returns 3.
PARTSCOUNT('one|two|three') returns 3
Go Back