EndsWithString
The EndsWithString function indicates whether a specified source string ends with a specified search string.
Syntax
Copy Code | |
---|---|
bool EndsWithString( string sourceString, string searchString, bool ignoreCase ); |
Parameters
Return Values
Returns true if the string specified by sourceString ends with the string specified by searchString. Returns false if either the sourceString does not end with searchString, or if searchString is longer than sourceString.
Example Code
The following code example assumes that userAtHostUri contains a SIP URI. The example code in effect determines whether the SIP address belongs to the EDU top-level domain, and is case-insensitive.
Copy Code | |
---|---|
EndsWithString(GetHostName(userAtHostUri), "edu", "true") |