after(
TEXT
,
TAG
)

The after( function extracts all text after a specified tag (sequence of characters).


Parameters

This function has two parameters:

text – the original text

tag – the separator character (or characters).


Description

This function extracts all text after a specified tag (sequence of characters). If the tag doesn’t exist the function returns “”.

after("joe@isp.com","@") ☞ isp.com

Note: This function is equivalent to:

tagdata(thetext+chr(255)+chr(254)+chr(253),thetag,chr(255)+chr(254)+chr(253),1)

See Also


History

VersionStatusNotes
10.0No ChangeCarried over from Panorama 6.0.