Nota
L'accesso a questa pagina richiede l'autorizzazione. È possibile provare ad accedere o modificare le directory.
L'accesso a questa pagina richiede l'autorizzazione. È possibile provare a modificare le directory.
Returns the substring of the first argument string that follows the first occurrence of the second argument string in the first argument string, or the empty string if the first argument string does not contain the second argument string.
stringsubstring-after(string, string)
Parameters
- string
A string. - string
A string.
Return Values
Returns the substring of the first argument string that follows the first occurrence of the second argument string in the first argument string, or the empty string if the first argument string does not contain the second argument string.
Remarks
If an argument is not of type string, it is first converted to a string and then evaluated.
The following function call returns "04/01".
substring-after("1999/04/01","/")
The following function call returns "99/04/01".
substring-after("1999/04/01","19")
Requirements
None.
See Also
Send Feedback on this topic to the authors