how to convert a string to a bool

C#Type Conversion

C# Problem Overview


I have a string that can be either "0" or "1", and it is guaranteed that it won't be anything else.

So the question is: what's the best, simplest and most elegant way to convert this to a bool?

C# Solutions


Solution 1 - C#

Quite simple indeed:

bool b = str == "1";

Solution 2 - C#

Ignoring the specific needs of this question, and while its never a good idea to cast a string to a bool, one way would be to use the ToBoolean() method on the Convert class:

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

or an extension method to do whatever weird mapping you're doing:

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!");
        }
    }
}

Solution 3 - C#

I know this doesn't answer your question, but just to help other people. If you are trying to convert "true" or "false" strings to boolean:

Try 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!

Solution 4 - C#

bool b = str.Equals("1")? true : false;

Or even better, as suggested in a comment below:

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

Solution 5 - C#

I made something a little bit more extensible, Piggybacking on Mohammad Sepahvand's concept:

    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));
    }

Solution 6 - C#

I used the below code to convert a string to boolean.

Convert.ToBoolean(Convert.ToInt32(myString));

Solution 7 - C#

Here's my attempt at the most forgiving string to bool conversion that is still useful, basically keying off only the first character.

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;
    }
}

Solution 8 - C#

    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));
}

Solution 9 - C#

I use this:

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");
        }

Solution 10 - C#

I love extension methods and this is the one I use...

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;
	}
}

Then to use it just do something like...

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

Solution 11 - C#

string sample = "";

bool myBool = Convert.ToBoolean(sample);

Solution 12 - C#

If you want to test if a string is a valid Boolean without any thrown exceptions you can try this :

    string stringToBool1 = "true";
    string stringToBool2 = "1";
    bool value1;
    if(bool.TryParse(stringToBool1, out value1))
    {
        MessageBox.Show(stringToBool1 + " is Boolean");
    }
    else
    {
        MessageBox.Show(stringToBool1 + " is not Boolean");
    }

outputis Boolean and the output for stringToBool2 is : 'is not Boolean'

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSachin KainthView Question on Stackoverflow
Solution 1 - C#Kendall FreyView Answer on Stackoverflow
Solution 2 - C#Mohammad SepahvandView Answer on Stackoverflow
Solution 3 - C#live-loveView Answer on Stackoverflow
Solution 4 - C#GETahView Answer on Stackoverflow
Solution 5 - C#mcfeaView Answer on Stackoverflow
Solution 6 - C#yogihostingView Answer on Stackoverflow
Solution 7 - C#Mark MeuerView Answer on Stackoverflow
Solution 8 - C#Outside the Box DeveloperView Answer on Stackoverflow
Solution 9 - C#Hoang TranView Answer on Stackoverflow
Solution 10 - C#Arvo BowenView Answer on Stackoverflow
Solution 11 - C#user15215405View Answer on Stackoverflow
Solution 12 - C#user2215619View Answer on Stackoverflow