String.Contains Method
.NET Framework 3.0
Returns a value indicating whether the specified String object occurs within this string.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
public boolean Contains ( String value )
public function Contains ( value : String ) : boolean
Not applicable.
Parameters
- value
The String object to seek.
Return Value
true if the value parameter occurs within this string, or if value is the empty string (""); otherwise, false.The following code example determines whether the string "fox" is a substring of a familiar quotation.
// This example demonstrates the String.Contains() method
import System.*;
class Sample
{
public static void main(String[] args)
{
String s1 = "The quick brown fox jumps over the lazy dog";
String s2 = "fox";
boolean b;
b = s1.Contains(s2);
Console.WriteLine("Is the string, s2, in the string, s1?: {0}",
(System.Boolean)b);
} //main
} //Sample
/*
This example produces the following results:
Is the string, s2, in the string, s1?: True
*/
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: