テキストボックスとボタンがあるとしましょう。そして、ユーザーはテーブルを作成してボタンをクリックします。
「ta」で始まるテキストをプログラムで受け入れたい。したがって、この入力を受け入れます。それを行う方法はありますか?
テキストボックスとボタンがあるとしましょう。そして、ユーザーはテーブルを作成してボタンをクリックします。
「ta」で始まるテキストをプログラムで受け入れたい。したがって、この入力を受け入れます。それを行う方法はありますか?
文字列が指定された文字列で始まるかどうかを確認するには、StartsWithメソッドを使用できます。
if(stringVariable.StartsWith("ta")) {
// starts with ta
}
これをきちんとやりましょう...:)
/// <summary>
/// Determines whether the supplied string begins with "ta".
/// </summary>
/// <param name="value">The string to test.</param>
/// <returns>True if the supplied string starts with "ta"; false, otherwise.</returns>
/// <remarks>The comparison is case-insensitive.</remarks>
private static bool StartsWithTa(string value)
{
const string prefix = "ta";
if (value == null)
return false;
return value.StartsWith(prefix, StringComparison.CurrentCultureIgnoreCase);
}