web-dev-qa-db-ja.com

文字列をブールに変換する方法

私はstringを持っています。これは「0」または「1」のいずれかであり、それ以外のものにはならないことが保証されています。

質問は次のとおりです。これをboolに変換するための最も簡単でエレガントな方法は何ですか?

75
Sachin Kainth

とても簡単です:

bool b = str == "1";
152
Kendall Frey

この質問の特定のニーズを無視し、文字列をブールにキャストすることは決して良い考えではありませんが、1つの方法はConvertクラスで ToBoolean() メソッドを使用することです。

bool val = Convert.ToBoolean("true");

または、奇妙なマッピングを行うための拡張メソッド:

public static class StringExtensions
{
    public static bool ToBoolean(this string value)
    {
        switch (value.ToLower())
        {
            case  "true":
                return true;
            case "t":
                return true;
            case "1":
                return true;
            case "0":
                return false;
            case "false":
                return false;
            case "f":
                return false;
            default:
                throw new InvalidCastException("You can't cast that value to a bool!");
        }
    }
}
72

これはあなたの質問に答えるのではなく、他の人を助けるためだけのものです。 「true」または「false」文字列をブール値に変換しようとしている場合:

Boolean.Parseを試す

bool val = Boolean.Parse("true"); ==> true
bool val = Boolean.Parse("True"); ==> true
bool val = Boolean.Parse("TRUE"); ==> true
bool val = Boolean.Parse("False"); ==> false
bool val = Boolean.Parse("1"); ==> Exception!
bool val = Boolean.Parse("diffstring"); ==> Exception!
37
live-love
bool b = str.Equals("1")? true : false;

以下のコメントで示唆されているように、さらに良いことです。

bool b = str.Equals("1");
20
GETah

Mohammad Sepahvandのコンセプトに基づいて、少し拡張性のあるものを作成しました。

    public static bool ToBoolean(this string s)
    {
        string[] trueStrings = { "1", "y" , "yes" , "true" };
        string[] falseStrings = { "0", "n", "no", "false" };


        if (trueStrings.Contains(s, StringComparer.OrdinalIgnoreCase))
            return true;
        if (falseStrings.Contains(s, StringComparer.OrdinalIgnoreCase))
            return false;

        throw new InvalidCastException("only the following are supported for converting strings to boolean: " 
            + string.Join(",", trueStrings)
            + " and "
            + string.Join(",", falseStrings));
    }
7
mcfea

以下のコードを使用して、文字列をブール値に変換しました。

Convert.ToBoolean(Convert.ToInt32(myString));
5
yogihosting
    private static readonly ICollection<string> PositiveList = new Collection<string> { "Y", "Yes", "T", "True", "1", "OK" };

public static bool ToBoolean(this string input)
{
                return input != null && PositiveList.Any(λ => λ.Equals(input, StringComparison.OrdinalIgnoreCase));
}

ここでは、基本的に最初の文字だけをキーオフする、まだ便利な、最も寛容な文字列をブールに変換する試みを示します。

public static class StringHelpers
{
    /// <summary>
    /// Convert string to boolean, in a forgiving way.
    /// </summary>
    /// <param name="stringVal">String that should either be "True", "False", "Yes", "No", "T", "F", "Y", "N", "1", "0"</param>
    /// <returns>If the trimmed string is any of the legal values that can be construed as "true", it returns true; False otherwise;</returns>
    public static bool ToBoolFuzzy(this string stringVal)
    {
        string normalizedString = (stringVal?.Trim() ?? "false").ToLowerInvariant();
        bool result = (normalizedString.StartsWith("y") 
            || normalizedString.StartsWith("t")
            || normalizedString.StartsWith("1"));
        return result;
    }
}
3
Mark Meuer

拡張メソッドが大好きで、これが私が使用しているものです...

static class StringHelpers
{
    public static bool ToBoolean(this String input, out bool output)
    {
        //Set the default return value
        output = false;

        //Account for a string that does not need to be processed
        if (input == null || input.Length < 1)
            return false;

        if ((input.Trim().ToLower() == "true") || (input.Trim() == "1"))
            output = true;
        else if ((input.Trim().ToLower() == "false") || (input.Trim() == "0"))
            output = false;
        else
            return false;

        //Return success
        return true;
    }
}

次に、それを使用するには、次のようにします...

bool b;
bool myValue;
data = "1";
if (!data.ToBoolean(out b))
  throw new InvalidCastException("Could not cast to bool value from data '" + data + "'.");
else
  myValue = b;  //myValue is True
0
Arvo Bowen

私はこれを使用します:

public static bool ToBoolean(this string input)
        {
            //Account for a string that does not need to be processed
            if (string.IsNullOrEmpty(input))
                return false;

            return (input.Trim().ToLower() == "true") || (input.Trim() == "1");
        }
0
Hoang Tran