StrAfter
Qubes 9.0 Extracts string characters after a delimiter.
Syntax
StrAfter(string, delimiter)
string = character string to extract from
delimiter = delimiter string or character
delimiter = delimiter string or character
Remarks
If delimiter is not present, then it returns an empty string.
See also: StrBefore to extract before a delimiter.
Examples
StrAfter("hello world", " ") = "world"StrAfter("hello world", "z") = ""