UInt32.TryParse() hex-number not working

2019-04-04 10:31发布

For some reason the following C# Console program always outputs:

32
False
wtf=0

What am I doing wrong?

using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Globalization;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine(Convert.ToUInt32("0x20", 16));
            UInt32 wtf = 0;
            Console.WriteLine(UInt32.TryParse("0x20",
                              NumberStyles.HexNumber, // I've tried also AllowHexSpecifier
                              CultureInfo.InvariantCulture,  // I've also tried CurrentCulture
                              out wtf));
            Console.WriteLine("wtf={0}", wtf);
        }
    }
}

标签: c# tryparse
4条回答
老娘就宠你
2楼-- · 2019-04-04 10:32
// stupid but effective way to improve the parsing
char[] _trim_hex = new char[] {'0','x'};
int temp;

if (int.TryParse(value.TrimStart(_trim_hex), NumberStyles.HexNumber, null, out temp))
{
    // temp is good
}
查看更多
我欲成王,谁敢阻挡
3楼-- · 2019-04-04 10:42

Get rid of the leading "0x" in the string you're trying to parse.

查看更多
\"骚年 ilove
4楼-- · 2019-04-04 10:44

You need to drop the "0x" prefix. Please see this blog entry

查看更多
ゆ 、 Hurt°
5楼-- · 2019-04-04 10:51

See also http://msdn.microsoft.com/en-us/library/kadka85s%28v=VS.100%29.aspx In the example at the bottom of the page:

Attempted conversion of '0x8F8C' failed.

查看更多
登录 后发表回答