Share via


ContainsString(string,string,bool) function

 
Communications Server 2007 Server SDK Documentation

ContainsString

The ContainsString function searches for an occurrence of one specified string within another.

bool ContainsString(
  string sourceString,
  string searchString,
  bool ignoreCase
);

Parameters

  • sourceString
    The string that will be searched.
  • searchString
    The string to search for within sourceString.
  • ignoreCase
    Indicates whether case should be ignored when matching. If true, case will be ignored; if false, case will be considered.

Return Values

Returns true if searchString was found within sourceString; false if not.

  
  What did you think of this topic?
  © 2007 Microsoft Corporation. All rights reserved.