SByte.TryParse 方法

定义

将数字的字符串表示形式转换为它的等效 8 位有符号整数。 一个指示转换是成功还是失败的返回代码。

重载

TryParse(ReadOnlySpan<Byte>, IFormatProvider, SByte)

尝试将 UTF-8 字符范围解析为值。

TryParse(ReadOnlySpan<Char>, SByte)

尝试将数字的范围表示形式转换为它的等效 SByte,并返回一个指示转换是否成功的值。

TryParse(String, SByte)

尝试将数字的字符串表示形式转换为它的等效 SByte,并返回一个指示转换是否成功的值。

TryParse(ReadOnlySpan<Char>, IFormatProvider, SByte)

尝试将字符范围解析为值。

TryParse(String, IFormatProvider, SByte)

尝试将字符串解析为值。

TryParse(ReadOnlySpan<Byte>, NumberStyles, IFormatProvider, SByte)

尝试将 UTF-8 字符范围解析为值。

TryParse(ReadOnlySpan<Byte>, SByte)

尝试将包含数字字符串表示形式的 UTF-8 字符范围转换为其等效的 8 位带符号整数。

TryParse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider, SByte)

尝试将指定样式和区域性特定格式的数字的范围表示形式转换为其 SByte 等效项,并返回一个指示转换是否成功的值。

TryParse(String, NumberStyles, IFormatProvider, SByte)

尝试将指定样式和区域性特定格式的数字的字符串表示形式转换为其 SByte 等效项,并返回一个指示转换是否成功的值。

TryParse(ReadOnlySpan<Byte>, IFormatProvider, SByte)

Source:
SByte.cs
Source:
SByte.cs

尝试将 UTF-8 字符范围解析为值。

public:
 static bool TryParse(ReadOnlySpan<System::Byte> utf8Text, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::SByte % result) = IUtf8SpanParsable<System::SByte>::TryParse;
public static bool TryParse (ReadOnlySpan<byte> utf8Text, IFormatProvider? provider, out sbyte result);
static member TryParse : ReadOnlySpan<byte> * IFormatProvider * sbyte -> bool
Public Shared Function TryParse (utf8Text As ReadOnlySpan(Of Byte), provider As IFormatProvider, ByRef result As SByte) As Boolean

参数

utf8Text
ReadOnlySpan<Byte>

要分析的 UTF-8 字符的跨度。

provider
IFormatProvider

一个对象,提供有关 utf8Text 的区域性特定格式设置信息。

result
SByte

返回时,包含成功分析 utf8Text 的结果或失败时的未定义值。

返回

true 如果 utf8Text 已成功分析,则为 ;否则为 false

适用于

TryParse(ReadOnlySpan<Char>, SByte)

Source:
SByte.cs
Source:
SByte.cs
Source:
SByte.cs

重要

此 API 不符合 CLS。

尝试将数字的范围表示形式转换为它的等效 SByte,并返回一个指示转换是否成功的值。

public:
 static bool TryParse(ReadOnlySpan<char> s, [Runtime::InteropServices::Out] System::SByte % result);
public static bool TryParse (ReadOnlySpan<char> s, out sbyte result);
[System.CLSCompliant(false)]
public static bool TryParse (ReadOnlySpan<char> s, out sbyte result);
static member TryParse : ReadOnlySpan<char> * sbyte -> bool
[<System.CLSCompliant(false)>]
static member TryParse : ReadOnlySpan<char> * sbyte -> bool
Public Shared Function TryParse (s As ReadOnlySpan(Of Char), ByRef result As SByte) As Boolean

参数

s
ReadOnlySpan<Char>

一个范围,包含表示要转换的数字的字符。

result
SByte

当此方法返回时,如果转换成功,则包含与 s 中所含数字等效的 8 位有符号整数值;如果转换失败,则包含零。 如果参数为 nullEmpty,格式不正确,或表示小于 SByte.MinValue 或大于 SByte.MaxValue 的数字,则转换失败。s 此参数未经初始化即进行传递;最初在 result 中提供的任何值都会被覆盖。

返回

如果 true 成功转换,则为 s;否则为 false

属性

适用于

TryParse(String, SByte)

Source:
SByte.cs
Source:
SByte.cs
Source:
SByte.cs

重要

此 API 不符合 CLS。

尝试将数字的字符串表示形式转换为它的等效 SByte,并返回一个指示转换是否成功的值。

public:
 static bool TryParse(System::String ^ s, [Runtime::InteropServices::Out] System::SByte % result);
[System.CLSCompliant(false)]
public static bool TryParse (string s, out sbyte result);
public static bool TryParse (string? s, out sbyte result);
[System.CLSCompliant(false)]
public static bool TryParse (string? s, out sbyte result);
[<System.CLSCompliant(false)>]
static member TryParse : string * sbyte -> bool
static member TryParse : string * sbyte -> bool
Public Shared Function TryParse (s As String, ByRef result As SByte) As Boolean

参数

s
String

包含要转换的数字的字符串。

result
SByte

当此方法返回时,如果转换成功,则包含与 s 中所含数字等效的 8 位有符号整数值;如果转换失败,则包含零。 如果参数为 nullEmpty,格式不正确,或表示小于 SByte.MinValue 或大于 SByte.MaxValue 的数字,则转换失败。s 此参数未经初始化即进行传递;最初在 result 中提供的任何值都会被覆盖。

返回

如果 true 成功转换,则为 s;否则为 false

属性

示例

以下示例尝试通过调用 TryParse(String, SByte) 方法将数组中的字符串转换为SByte值。

string[] numericStrings = {"-3.6", "12.8", "+16.7", "    3   ", "(17)", 
                           "-17", "+12", "18-", "987", "1,024", "  127 "};
sbyte number;
foreach (string numericString in numericStrings)
{
   if (sbyte.TryParse(numericString, out number)) 
      Console.WriteLine("Converted '{0}' to {1}.", numericString, number);
   else
      Console.WriteLine("Cannot convert '{0}' to an SByte.", numericString);
}
// The example displays the following output to the console:
//       Cannot convert '-3.6' to an SByte.
//       Cannot convert '12.8' to an SByte.
//       Cannot convert '+16.7' to an SByte.
//       Converted '    3   ' to 3.
//       Cannot convert '(17)' to an SByte.
//       Converted '-17' to -17.
//       Converted '+12' to 12.
//       Cannot convert '18-' to an SByte.
//       Cannot convert '987' to an SByte.
//       Cannot convert '1,024' to an SByte.
//       Converted '  127 ' to 127.
open System

let numericStrings = 
    [| "-3.6"; "12.8"; "+16.7"; "    3   "; "(17)" 
       "-17"; "+12"; "18-"; "987"; "1,024"; "  127 " |]

for numericString in numericStrings do
    match SByte.TryParse numericString with 
    | true, number ->
        printfn $"Converted '{numericString}' to {number}."
    | _ ->
        printfn $"Cannot convert '{numericString}' to an SByte."
// The example displays the following output to the console:
//       Cannot convert '-3.6' to an SByte.
//       Cannot convert '12.8' to an SByte.
//       Cannot convert '+16.7' to an SByte.
//       Converted '    3   ' to 3.
//       Cannot convert '(17)' to an SByte.
//       Converted '-17' to -17.
//       Converted '+12' to 12.
//       Cannot convert '18-' to an SByte.
//       Cannot convert '987' to an SByte.
//       Cannot convert '1,024' to an SByte.
//       Converted '  127 ' to 127.
Dim numericStrings() As String = {"-3.6", "12.8", "+16.7", "    3   ", _
                                  "(17)", "-17", "+12", "18-", "987", _
                                  "1,024", "  127 "}
Dim number As SByte
For Each numericString As String In numericStrings
   If SByte.TryParse(numericString, number) Then
      Console.WriteLine("Converted '{0}' to {1}.", numericString, number)
   Else
      Console.WriteLine("Cannot convert '{0}' to an SByte.", numericString)
   End If      
Next
' The example displays the following output to the console:
'       Cannot convert '-3.6' to an SByte.
'       Cannot convert '12.8' to an SByte.
'       Cannot convert '+16.7' to an SByte.
'       Converted '    3   ' to 3.
'       Cannot convert '(17)' to an SByte.
'       Converted '-17' to -17.
'       Converted '+12' to 12.
'       Cannot convert '18-' to an SByte.
'       Cannot convert '987' to an SByte.
'       Cannot convert '1,024' to an SByte.
'       Converted '  127 ' to 127.

注解

方法 SByte.TryParse(String, SByte) 类似于 SByte.Parse(String) 方法,只是在转换失败时不会引发异常。 此方法无需使用异常处理来测试 是否FormatExceptionvalue无效且无法成功分析。

参数 s 应为十进制数的字符串表示形式,格式如下:

[ws][sign]digits[ws]

方括号 ([ and ]) 中的元素是可选的。 下表对每个元素进行了描述。

元素 说明
ws 可选空格。
sign 可选符号。 有效符号字符由 NumberFormatInfo.NegativeSign 当前区域性的 和 NumberFormatInfo.PositiveSign 属性决定。
位数 从 0 到 9 的十进制数字序列。

注意

参数指定的 value 字符串不能包含任何组分隔符或小数点分隔符,并且不能包含小数部分。

参数 s 通过使用 NumberStyles.Integer 样式进行解释。 除了十进制数字之外,仅允许使用带前导符号的前导空格和尾随空格。 若要使用 中存在的 value特定于区域性的格式设置信息显式定义样式元素,请调用 TryParse(String, NumberStyles, IFormatProvider, SByte) 方法。

通过使用 s 当前区域性的 对象中的 NumberFormatInfo 格式设置信息来分析 参数。 有关详细信息,请参阅 NumberFormatInfo.CurrentInfo

此重载将 参数中的所有 value 数字解释为十进制数字。 若要分析十六进制数的字符串表示形式,请改为调用 TryParse(String, NumberStyles, IFormatProvider, SByte) 重载。

另请参阅

适用于

TryParse(ReadOnlySpan<Char>, IFormatProvider, SByte)

Source:
SByte.cs
Source:
SByte.cs
Source:
SByte.cs

尝试将字符范围解析为值。

public:
 static bool TryParse(ReadOnlySpan<char> s, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::SByte % result) = ISpanParsable<System::SByte>::TryParse;
public static bool TryParse (ReadOnlySpan<char> s, IFormatProvider? provider, out sbyte result);
static member TryParse : ReadOnlySpan<char> * IFormatProvider * sbyte -> bool
Public Shared Function TryParse (s As ReadOnlySpan(Of Char), provider As IFormatProvider, ByRef result As SByte) As Boolean

参数

s
ReadOnlySpan<Char>

要分析的字符范围。

provider
IFormatProvider

一个对象,提供有关 s 的区域性特定格式设置信息。

result
SByte

此方法返回时,包含成功分析 s的结果或失败时的未定义值。

返回

true 如果 s 已成功分析,则为 ;否则为 false

适用于

TryParse(String, IFormatProvider, SByte)

Source:
SByte.cs
Source:
SByte.cs
Source:
SByte.cs

尝试将字符串解析为值。

public:
 static bool TryParse(System::String ^ s, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::SByte % result) = IParsable<System::SByte>::TryParse;
public static bool TryParse (string? s, IFormatProvider? provider, out sbyte result);
static member TryParse : string * IFormatProvider * sbyte -> bool
Public Shared Function TryParse (s As String, provider As IFormatProvider, ByRef result As SByte) As Boolean

参数

s
String

要分析的字符串。

provider
IFormatProvider

一个对象,提供有关 s 的区域性特定格式设置信息。

result
SByte

此方法返回时,包含成功分析 s 的结果或失败时的未定义值。

返回

true 如果 s 已成功分析,则为 ;否则为 false

适用于

TryParse(ReadOnlySpan<Byte>, NumberStyles, IFormatProvider, SByte)

Source:
SByte.cs
Source:
SByte.cs

尝试将 UTF-8 字符范围解析为值。

public:
 static bool TryParse(ReadOnlySpan<System::Byte> utf8Text, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::SByte % result) = System::Numerics::INumberBase<System::SByte>::TryParse;
public static bool TryParse (ReadOnlySpan<byte> utf8Text, System.Globalization.NumberStyles style, IFormatProvider? provider, out sbyte result);
static member TryParse : ReadOnlySpan<byte> * System.Globalization.NumberStyles * IFormatProvider * sbyte -> bool
Public Shared Function TryParse (utf8Text As ReadOnlySpan(Of Byte), style As NumberStyles, provider As IFormatProvider, ByRef result As SByte) As Boolean

参数

utf8Text
ReadOnlySpan<Byte>

要分析的 UTF-8 字符的跨度。

style
NumberStyles

可以存在于 中的 utf8Text数字样式的按位组合。

provider
IFormatProvider

一个对象,提供有关 utf8Text 的区域性特定格式设置信息。

result
SByte

返回时,包含成功分析 utf8Text 的结果或失败时的未定义值。

返回

true 如果 utf8Text 已成功分析,则为 ;否则为 false

适用于

TryParse(ReadOnlySpan<Byte>, SByte)

Source:
SByte.cs
Source:
SByte.cs

尝试将包含数字字符串表示形式的 UTF-8 字符范围转换为其等效的 8 位带符号整数。

public:
 static bool TryParse(ReadOnlySpan<System::Byte> utf8Text, [Runtime::InteropServices::Out] System::SByte % result);
public static bool TryParse (ReadOnlySpan<byte> utf8Text, out sbyte result);
static member TryParse : ReadOnlySpan<byte> * sbyte -> bool
Public Shared Function TryParse (utf8Text As ReadOnlySpan(Of Byte), ByRef result As SByte) As Boolean

参数

utf8Text
ReadOnlySpan<Byte>

包含表示要转换的数字的 UTF-8 字符的跨度。

result
SByte

此方法返回时,包含与 中 utf8Text 所包含的数字等效的 8 位带符号整数值(如果转换成功),如果转换失败,则包含零。 此参数未经初始化即进行传递;最初在 result 中提供的任何值都会被覆盖。

返回

如果 true 成功转换,则为 utf8Text;否则为 false

适用于

TryParse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider, SByte)

Source:
SByte.cs
Source:
SByte.cs
Source:
SByte.cs

重要

此 API 不符合 CLS。

尝试将指定样式和区域性特定格式的数字的范围表示形式转换为其 SByte 等效项,并返回一个指示转换是否成功的值。

public:
 static bool TryParse(ReadOnlySpan<char> s, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::SByte % result);
public:
 static bool TryParse(ReadOnlySpan<char> s, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::SByte % result) = System::Numerics::INumberBase<System::SByte>::TryParse;
public static bool TryParse (ReadOnlySpan<char> s, System.Globalization.NumberStyles style, IFormatProvider? provider, out sbyte result);
[System.CLSCompliant(false)]
public static bool TryParse (ReadOnlySpan<char> s, System.Globalization.NumberStyles style, IFormatProvider provider, out sbyte result);
[System.CLSCompliant(false)]
public static bool TryParse (ReadOnlySpan<char> s, System.Globalization.NumberStyles style, IFormatProvider? provider, out sbyte result);
static member TryParse : ReadOnlySpan<char> * System.Globalization.NumberStyles * IFormatProvider * sbyte -> bool
[<System.CLSCompliant(false)>]
static member TryParse : ReadOnlySpan<char> * System.Globalization.NumberStyles * IFormatProvider * sbyte -> bool
Public Shared Function TryParse (s As ReadOnlySpan(Of Char), style As NumberStyles, provider As IFormatProvider, ByRef result As SByte) As Boolean

参数

s
ReadOnlySpan<Char>

一个范围,包含表示要转换的数字的字符。

style
NumberStyles

枚举值的一个按位组合,指示 s 所允许的格式。 要指定的一个典型值为 Integer

provider
IFormatProvider

一个对象,提供有关 s 的区域性特定格式设置信息。

result
SByte

当此方法返回时,如果转换成功,则包含与 s 中所包含数字等效的 8 位有符号整数值;如果转换失败,则为零。 如果 参数为 nullEmpty,格式不符合 style,或表示小于 SByte.MinValue 或大于 SByte.MaxValue 的数字,则转换失败。s 此参数未经初始化即进行传递;最初在 result 中提供的任何值都会被覆盖。

返回

如果 true 成功转换,则为 s;否则为 false

属性

适用于

TryParse(String, NumberStyles, IFormatProvider, SByte)

Source:
SByte.cs
Source:
SByte.cs
Source:
SByte.cs

重要

此 API 不符合 CLS。

符合 CLS 的替代方案
System.Int16.TryParse(String, Int16)

尝试将指定样式和区域性特定格式的数字的字符串表示形式转换为其 SByte 等效项,并返回一个指示转换是否成功的值。

public:
 static bool TryParse(System::String ^ s, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::SByte % result);
public:
 static bool TryParse(System::String ^ s, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::SByte % result) = System::Numerics::INumberBase<System::SByte>::TryParse;
[System.CLSCompliant(false)]
public static bool TryParse (string s, System.Globalization.NumberStyles style, IFormatProvider provider, out sbyte result);
public static bool TryParse (string? s, System.Globalization.NumberStyles style, IFormatProvider? provider, out sbyte result);
[System.CLSCompliant(false)]
public static bool TryParse (string? s, System.Globalization.NumberStyles style, IFormatProvider? provider, out sbyte result);
[<System.CLSCompliant(false)>]
static member TryParse : string * System.Globalization.NumberStyles * IFormatProvider * sbyte -> bool
static member TryParse : string * System.Globalization.NumberStyles * IFormatProvider * sbyte -> bool
Public Shared Function TryParse (s As String, style As NumberStyles, provider As IFormatProvider, ByRef result As SByte) As Boolean

参数

s
String

表示要转换的数字的字符串。

style
NumberStyles

枚举值的一个按位组合,指示 s 所允许的格式。 要指定的一个典型值为 Integer

provider
IFormatProvider

一个对象,提供有关 s 的区域性特定格式设置信息。

result
SByte

当此方法返回时,如果转换成功,则包含与 s 中所包含数字等效的 8 位有符号整数值;如果转换失败,则为零。 如果参数为 nullEmpty、的格式不符合 style,或者表示小于 SByte.MinValue 或大于 SByte.MaxValue 的数字,则转换失败。s 此参数未经初始化即进行传递;最初在 result 中提供的任何值都会被覆盖。

返回

如果 true 成功转换,则为 s;否则为 false

属性

例外

style 不是 NumberStyles 值。

- 或 -

style 不是 AllowHexSpecifierHexNumber 值的组合。

示例

以下示例使用许多不同的字符串和NumberStyles值调用 TryParse(String, NumberStyles, IFormatProvider, SByte) 方法。

using System;
using System.Globalization;

public class Example
{
   public static void Main()
   {
      string numericString;
      NumberStyles styles;
      
      numericString = "106";
      styles = NumberStyles.Integer;
      CallTryParse(numericString, styles);
      
      numericString = "-106";
      styles = NumberStyles.None;
      CallTryParse(numericString, styles);
      
      numericString = "103.00";
      styles = NumberStyles.Integer | NumberStyles.AllowDecimalPoint;
      CallTryParse(numericString, styles);
      
      numericString = "103.72";
      styles = NumberStyles.Integer | NumberStyles.AllowDecimalPoint;
      CallTryParse(numericString, styles);

      numericString = "10E-01";
      styles = NumberStyles.Integer | NumberStyles.AllowExponent;
      CallTryParse(numericString, styles); 
      
      numericString = "12E-01";
      CallTryParse(numericString, styles);
          
      numericString = "12E01";
      CallTryParse(numericString, styles); 
      
      numericString = "C8";
      CallTryParse(numericString, NumberStyles.HexNumber);
      
      numericString = "0x8C";
      CallTryParse(numericString, NumberStyles.HexNumber);
   }
   
   private static void CallTryParse(string stringToConvert, NumberStyles styles)
   {
      sbyte number;
      bool result = SByte.TryParse(stringToConvert, styles, 
                                   CultureInfo.InvariantCulture, out number);
      if (result)
         Console.WriteLine($"Converted '{stringToConvert}' to {number}.");
      else
         Console.WriteLine($"Attempted conversion of '{stringToConvert}' failed.");
   }
}
// The example displays the following output:
//       Converted '106' to 106.
//       Attempted conversion of '-106' failed.
//       Converted '103.00' to 103.
//       Attempted conversion of '103.72' failed.
//       Converted '10E-01' to 1.
//       Attempted conversion of '12E-01' failed.
//       Converted '12E01' to 120.
//       Converted 'C8' to -56.
//       Attempted conversion of '0x8C' failed.
open System
open System.Globalization

let callTryParse (stringToConvert: string) styles =
    match SByte.TryParse(stringToConvert, styles, CultureInfo.InvariantCulture) with
    | true, number ->
        printfn $"Converted '{stringToConvert}' to {number}."
    | _ ->
        printfn $"Attempted conversion of '{stringToConvert}' failed."

[<EntryPoint>]
let main _ =
    let numericString = "106"
    let styles = NumberStyles.Integer
    callTryParse numericString styles
    
    let numericString = "-106"
    let styles = NumberStyles.None
    callTryParse numericString styles
    
    let numericString = "103.00"
    let styles = NumberStyles.Integer ||| NumberStyles.AllowDecimalPoint
    callTryParse numericString styles
    
    let numericString = "103.72"
    let styles = NumberStyles.Integer ||| NumberStyles.AllowDecimalPoint
    callTryParse numericString styles

    let numericString = "10E-01"
    let styles = NumberStyles.Integer ||| NumberStyles.AllowExponent
    callTryParse numericString styles 
    
    let numericString = "12E-01"
    callTryParse numericString styles
        
    let numericString = "12E01"
    callTryParse numericString styles 
    
    let numericString = "C8"
    callTryParse numericString NumberStyles.HexNumber
    
    let numericString = "0x8C"
    callTryParse numericString NumberStyles.HexNumber
    0

// The example displays the following output:
//       Converted '106' to 106.
//       Attempted conversion of '-106' failed.
//       Converted '103.00' to 103.
//       Attempted conversion of '103.72' failed.
//       Converted '10E-01' to 1.
//       Attempted conversion of '12E-01' failed.
//       Converted '12E01' to 120.
//       Converted 'C8' to -56.
//       Attempted conversion of '0x8C' failed.
Imports System.Globalization

Module StringParsing
   Public Sub Main()
      Dim numericString As String
      Dim styles As NumberStyles
      
      numericString = "106"
      styles = NumberStyles.Integer
      CallTryParse(numericString, styles)
      
      numericString = "-106"
      styles = NumberStyles.None
      CallTryParse(numericString, styles)
      
      numericString = "103.00"
      styles = NumberStyles.Integer Or NumberStyles.AllowDecimalPoint
      CallTryParse(numericString, styles)
      
      numericString = "103.72"
      styles = NumberStyles.Integer Or NumberStyles.AllowDecimalPoint
      CallTryParse(numericString, styles)

      numericString = "10E-01"
      styles = NumberStyles.Integer Or NumberStyles.AllowExponent
      CallTryParse(numericString, styles) 
      
      numericString = "12E-01"
      CallTryParse(numericString, styles)
          
      numericString = "12E01"
      CallTryParse(numericString, styles) 
      
      numericString = "C8"
      CallTryParse(numericString, NumberStyles.HexNumber)
      
      numericString = "0x8C"
      CallTryParse(numericString, NumberStyles.HexNumber)
   End Sub
   
   Private Sub CallTryParse(stringToConvert As String, styles AS NumberStyles)
      Dim number As SByte
      Dim result As Boolean = SByte.TryParse(stringToConvert, styles, _
                                             CultureInfo.InvariantCulture, number)
      If result Then
         Console.WriteLine("Converted '{0}' to {1}.", stringToConvert, number)
      Else
         Console.WriteLine("Attempted conversion of '{0}' failed.", _
                           Convert.ToString(stringToConvert))
      End If                                                                           
   End Sub
End Module
' The example displays the following output to the console:
'       Converted '106' to 106.
'       Attempted conversion of '-106' failed.
'       Converted '103.00' to 103.
'       Attempted conversion of '103.72' failed.
'       Converted '10E-01' to 1.
'       Attempted conversion of '12E-01' failed.
'       Converted '12E01' to 120.
'       Converted 'C8' to -56.
'       Attempted conversion of '0x8C' failed.

注解

方法 TryParse(String, NumberStyles, IFormatProvider, SByte) 与 方法类似 Parse(String, NumberStyles, IFormatProvider) ,只是在转换失败时不会引发异常。 此方法无需使用异常处理来测试 FormatExceptionvalue 是否无效且无法成功分析。

参数 style 定义样式元素 (,如空格或正或负号) ,这些元素在 参数中 value 允许分析操作成功。 它必须是 枚举中的位标志 NumberStyles 的组合。 根据 的值 stylevalue 参数可能包括以下元素:

[ws][$][sign][digits,]digits[.fractional_digits][E[sign]exponential_digits][ws]

style如果 参数包括 AllowHexSpecifier,则value参数可以包含以下元素:

[ws]hexdigits[ws]

方括号 ([ and ]) 中的元素是可选的。 下表对每个元素进行了描述。

元素 说明
ws 可选空格。 如果包含 标志,则开头value会出现空格;如果stylestyle包含 NumberStyles.AllowLeadingWhiteNumberStyles.AllowTrailingWhite 标志,value则结尾处会显示空格。
$ 区域性特定的货币符号。 它在字符串中的位置由 CurrencyPositivePattern 参数的 方法provider返回GetFormatNumberFormatInfo 对象的 属性定义。 如果style包含 标志,NumberStyles.AllowCurrencySymbol则可以在 中value显示货币符号。
sign 可选符号。 如果包含 标志,则符号可以出现在 的value开头;如果stylestyle包含 NumberStyles.AllowTrailingSign 标志,则它可能显示在 的末尾valueNumberStyles.AllowLeadingSign 如果style包含 标志,NumberStyles.AllowParentheses则可以在 中使用value括号来指示负值。
位数 从 0 到 9 的数字序列。
, 区域性特定的组分隔符。 如果style包含 标志,则可以在 中value显示 由 provider 指定的区域性的NumberStyles.AllowThousands组分隔符。
. 区域性特定的小数点符号。 如果包含 标志,则 指定的provider区域性的小数点符号可以出现在 中valueNumberStyles.AllowDecimalPointstyle
fractional_digits 出现一个或多个数字 0。 仅当包含 标志时styleNumberStyles.AllowDecimalPoint小数位数才能显示在 中value
E “e”或“E”字符,指示该值以指数 (科学) 表示法表示。 如果style包含 标志,则 value 参数可以表示指数表示法中的NumberStyles.AllowExponent数字。
exponential_digits 从 0 到 9 的数字序列。 如果style包含 标志,则 value 参数可以表示指数表示法中的NumberStyles.AllowExponent数字。
hexdigits 从 0 到 f 或 0 到 F 的十六进制数字序列。

注意

分析操作将忽略中 s 任何 (U+0000) 字符的终止 NUL,而不考虑 参数的值 style

仅具有十进制数字的字符串 (对应于 NumberStyles.None 标志) 始终成功分析。 大多数剩余 NumberStyles 成员控制此输入字符串中可能存在但不需要存在的元素。 下表指示各个 NumberStyles 成员如何影响 中可能存在 value的元素。

非复合 NumberStyles 除数字外的值允许的元素
None 仅十进制数字。
AllowDecimalPoint 小数点 (.) 和 fractional_digits 元素。 但是, fractional_digits 只能包含一个或多个 0 位数字,否则方法返回 false
AllowExponent “e”或“E”字符,指示指数表示法以及 exponential_digits。 如果 value 以指数表示法表示数字,则它不能具有非零的小数部分。
AllowLeadingWhite 开头的 valuews 元素。
AllowTrailingWhite 位于 末尾的 valuews 元素。
AllowLeadingSign 数字之前的符号元素。
AllowTrailingSign 数字后面的符号元素。
AllowParentheses 用括号括住数值的 符号 元素。
AllowThousands 组分隔符 () 元素。
AllowCurrencySymbol 元素 ($) 货币。
Currency 所有元素。 但是, value 不能表示十六进制数或指数表示法中的数字。
Float 开头或结尾处的 valuews元素,符号位于 的value开头,小数点 (.) 符号。 参数 value 还可以使用指数表示法。
Number ws符号、组分隔符 () 和小数点 (.) 元素。
Any 所有元素。 但是, value 不能表示十六进制数。

如果使用标志 NumberStyles.AllowHexSpecifiervalue 必须是十六进制值。 有效的十六进制数字为 0-9、a-f 和 A-F。 中唯一可以存在的 style 其他标志是 NumberStyles.AllowLeadingWhiteNumberStyles.AllowTrailingWhiteNumberStyles (枚举具有复合样式 HexNumber,其中包括空格标志 )

注意

如果 value 是十六进制数的字符串表示形式,则它前面不能有任何修饰 (,如 0x&h) 将其区分为十六进制数。 这会导致转换失败。

参数 provider 是实现 IFormatProvider 。 其 GetFormat 方法返回一个 NumberFormatInfo 对象,该对象提供有关 格式的 value区域性特定信息。 参数 provider 可以是以下任意一种:

如果 providernull,则 NumberFormatInfo 使用当前区域性的 对象。

另请参阅

适用于