-2

テキストボックスとボタンがあるとしましょう。そして、ユーザーはテーブルを作成してボタンをクリックします。

「ta」で始まるテキストをプログラムで受け入れたい。したがって、この入力を受け入れます。それを行う方法はありますか?

4

2 に答える 2

7

文字列が指定された文字列で始まるかどうかを確認するには、StartsWithメソッドを使用できます。

if(stringVariable.StartsWith("ta")) {
    // starts with ta
}
于 2012-06-19T15:19:09.983 に答える
1

これをきちんとやりましょう...:)

    /// <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);
    }
于 2012-06-19T15:27:05.487 に答える