Pos |
Returns the index value of the first character in a specified substring that occurs in a given string.
SyntaxPos(Substr,S) Parameters of Pos: Substr:Necessary parameter.Character string type. S:Necessary parameter.Character string type.DescriptionPos searches for Substr within S and returns an integer value that is the index of the first character of Substr within S. Pos is case-sensitive. If Substr is not found, Pos returns zero. |