strpbrk()

Function group Execute on client Platform(s)
String NO All

Syntax

strpbrk(string1,string2)

Description

Returns the substring of string1 from the point where any of the characters in string2 match string1.

Example

Calculate lString as  "this is a test"
Calculate lNewString as strpbrk(lString,"absj")
# returns the string "s is a test"