EndsWithString

The EndsWithStringfunction indicates whether a specified source string ends with a specified search string.

Syntax

  Copy codeCopy code
bool EndsWithString(
  string sourceString,
  string searchString,
  bool ignoreCase
);

Parameters

sourceString

Specifies the source string that the function examines.

searchString

Specifies the string to search for at the end of the string specified by sourceString.

ignoreCase

Specifies whether the search is case-sensitive or case-insensitive. If false , the search is case-sensitive. If true , the search is case-insensitive.

Return values

Returns true if the string specified by sourceStringends with the string specified by searchString. Returns false if either the sourceStringdoes not end with searchString, or if searchStringis longer than sourceString.

Example code

The following code example assumes that userAtHostUricontains 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 codeCopy code
EndsWithString(GetHostName(userAtHostUri), "edu", "true")