String.Contains メソッド
アセンブリ: mscorlib (mscorlib.dll 内)

Dim instance As String Dim value As String Dim returnValue As Boolean returnValue = instance.Contains(value)
戻り値
value パラメータがこの文字列内に存在するか、value が空の文字列 ("") の場合は true。それ以外の場合は false。



文章の中に文字列 "fox" が出現するかどうかを確認するコード例を次に示します。
' This example demonstrates the String.Contains() method Imports System Class Sample Public Shared Sub Main() Dim s1 As String = "The quick brown fox jumps over the lazy dog" Dim s2 As String = "fox" Dim b As Boolean b = s1.Contains(s2) Console.WriteLine("Is the string, s2, in the string, s1?: {0}", b) End Sub 'Main End Class 'Sample ' 'This example produces the following results: ' 'Is the string, s2, in the string, s1?: True '
// This example demonstrates the String.Contains() method using System; class Sample { public static void Main() { string s1 = "The quick brown fox jumps over the lazy dog"; string s2 = "fox"; bool b; b = s1.Contains(s2); Console.WriteLine("Is the string, s2, in the string, s1?: {0}", b); } } /* This example produces the following results: Is the string, s2, in the string, s1?: True */
// This example demonstrates the String.Contains() method using namespace System; int main() { String^ s1 = "The quick brown fox jumps over the lazy dog"; String^ s2 = "fox"; bool b; b = s1->Contains( s2 ); Console::WriteLine( "Is the string, s2, in the string, s1?: {0}", b ); } /* This example produces the following results: Is the string, s2, in the string, s1?: True */
// 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 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
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からString.Contains メソッドを検索する場合は、下記のリンクをクリックしてください。

- String.Contains メソッドのページへのリンク