SByte.Parse 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將數位的字串表示轉換為其相等的8位帶正負號的整數。
多載
Parse(String, NumberStyles, IFormatProvider) |
將指定樣式和特定文化特性格式之數位的字串表示轉換為其8位帶正負號的對等專案。 |
Parse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider) |
將指定樣式和特定文化特性格式的數位範圍表示轉換為其8位帶正負號的數位。 |
Parse(ReadOnlySpan<Byte>, NumberStyles, IFormatProvider) |
將UTF-8字元的範圍剖析為值。 |
Parse(String, IFormatProvider) |
將指定之特定文化特性格式之數位的字串表示轉換為其相等的8位帶正負號的整數。 |
Parse(String) |
將數位的字串表示轉換為其相等的8位帶正負號的整數。 |
Parse(ReadOnlySpan<Char>, IFormatProvider) |
將字元範圍剖析為值。 |
Parse(ReadOnlySpan<Byte>, IFormatProvider) |
將UTF-8字元的範圍剖析為值。 |
Parse(String, NumberStyles) |
將指定樣式中數位的字串表示轉換為其8位帶正負號的整數對等專案。 |
Parse(String, NumberStyles, IFormatProvider)
- 來源:
- SByte.cs
- 來源:
- SByte.cs
- 來源:
- SByte.cs
將指定樣式和特定文化特性格式之數位的字串表示轉換為其8位帶正負號的對等專案。
public:
static System::SByte Parse(System::String ^ s, System::Globalization::NumberStyles style, IFormatProvider ^ provider);
public:
static System::SByte Parse(System::String ^ s, System::Globalization::NumberStyles style, IFormatProvider ^ provider) = System::Numerics::INumberBase<System::SByte>::Parse;
[System.CLSCompliant(false)]
public static sbyte Parse (string s, System.Globalization.NumberStyles style, IFormatProvider provider);
public static sbyte Parse (string s, System.Globalization.NumberStyles style, IFormatProvider? provider);
[System.CLSCompliant(false)]
public static sbyte Parse (string s, System.Globalization.NumberStyles style, IFormatProvider? provider);
[<System.CLSCompliant(false)>]
static member Parse : string * System.Globalization.NumberStyles * IFormatProvider -> sbyte
static member Parse : string * System.Globalization.NumberStyles * IFormatProvider -> sbyte
Public Shared Function Parse (s As String, style As NumberStyles, provider As IFormatProvider) As SByte
參數
- s
- String
字串,包含要轉換的數位。 字串是使用 style
所指定的樣式來解譯。
- style
- NumberStyles
列舉值的位元組合,表示可以存在於 s
中的樣式專案。 要指定的一般值是 Integer。
- provider
- IFormatProvider
物件,提供與 s
相關的特定文化特性格式資訊。 如果 provider
是 null
,則會使用線程目前的文化特性。
傳回
8 位帶正負號的位元元組值,相當於 s
參數中指定的數位。
實作
- 屬性
例外狀況
s
null
。
s
的格式與 style
不相容。
範例
下列範例說明如何使用 Parse(String, NumberStyles, IFormatProvider) 方法,將數位的各種字串表示轉換成帶正負號的整數值。
using System;
using System.Globalization;
public class SByteConversion
{
NumberFormatInfo provider = NumberFormatInfo.CurrentInfo;
public static void Main()
{
string stringValue;
NumberStyles style;
stringValue = " 123 ";
style = NumberStyles.None;
CallParseOperation(stringValue, style);
stringValue = "000,000,123";
style = NumberStyles.Integer | NumberStyles.AllowThousands;
CallParseOperation(stringValue, style);
stringValue = "-100";
style = NumberStyles.AllowLeadingSign;
CallParseOperation(stringValue, style);
stringValue = "100-";
style = NumberStyles.AllowLeadingSign;
CallParseOperation(stringValue, style);
stringValue = "100-";
style = NumberStyles.AllowTrailingSign;
CallParseOperation(stringValue, style);
stringValue = "$100";
style = NumberStyles.AllowCurrencySymbol;
CallParseOperation(stringValue, style);
style = NumberStyles.Integer;
CallParseOperation(stringValue, style);
style = NumberStyles.AllowDecimalPoint;
CallParseOperation("100.0", style);
stringValue = "1e02";
style = NumberStyles.AllowExponent;
CallParseOperation(stringValue, style);
stringValue = "(100)";
style = NumberStyles.AllowParentheses;
CallParseOperation(stringValue, style);
}
private static void CallParseOperation(string stringValue,
NumberStyles style)
{
sbyte number;
if (stringValue == null)
Console.WriteLine("Cannot parse a null string...");
try
{
number = sbyte.Parse(stringValue, style);
Console.WriteLine("SByte.Parse('{0}', {1})) = {2}",
stringValue, style, number);
}
catch (FormatException)
{
Console.WriteLine("'{0}' and {1} throw a FormatException",
stringValue, style);
}
catch (OverflowException)
{
Console.WriteLine("'{0}' is outside the range of a signed byte",
stringValue);
}
}
}
// The example displays the following information to the console:
// ' 123 ' and None throw a FormatException
// SByte.Parse('000,000,123', Integer, AllowThousands)) = 123
// SByte.Parse('-100', AllowLeadingSign)) = -100
// '100-' and AllowLeadingSign throw a FormatException
// SByte.Parse('100-', AllowTrailingSign)) = -100
// SByte.Parse('$100', AllowCurrencySymbol)) = 100
// '$100' and Integer throw a FormatException
// SByte.Parse('100.0', AllowDecimalPoint)) = 100
// SByte.Parse('1e02', AllowExponent)) = 100
// SByte.Parse('(100)', AllowParentheses)) = -100
open System
open System.Globalization
let provider = NumberFormatInfo.CurrentInfo
let callParseOperation stringValue (style: NumberStyles) =
if stringValue = null then
printfn "Cannot parse a null string..."
else
try
let number = SByte.Parse(stringValue, style)
printfn $"SByte.Parse('{stringValue}', {style})) = {number}"
with
| :? FormatException ->
printfn $"'{stringValue}' and {style} throw a FormatException"
| :? OverflowException ->
printfn $"'{stringValue}' is outside the range of a signed byte"
[<EntryPoint>]
let main _ =
let stringValue = " 123 "
let style = NumberStyles.None
callParseOperation stringValue style
let stringValue = "000,000,123"
let style = NumberStyles.Integer ||| NumberStyles.AllowThousands
callParseOperation stringValue style
let stringValue = "-100"
let style = NumberStyles.AllowLeadingSign
callParseOperation stringValue style
let stringValue = "100-"
let style = NumberStyles.AllowLeadingSign
callParseOperation stringValue style
let stringValue = "100-"
let style = NumberStyles.AllowTrailingSign
callParseOperation stringValue style
let stringValue = "$100"
let style = NumberStyles.AllowCurrencySymbol
callParseOperation stringValue style
let style = NumberStyles.Integer
callParseOperation stringValue style
let style = NumberStyles.AllowDecimalPoint
callParseOperation "100.0" style
let stringValue = "1e02"
let style = NumberStyles.AllowExponent
callParseOperation stringValue style
let stringValue = "(100)"
let style = NumberStyles.AllowParentheses
callParseOperation stringValue style
0
// The example displays the following information to the console:
// ' 123 ' and None throw a FormatException
// SByte.Parse('000,000,123', Integer, AllowThousands)) = 123
// SByte.Parse('-100', AllowLeadingSign)) = -100
// '100-' and AllowLeadingSign throw a FormatException
// SByte.Parse('100-', AllowTrailingSign)) = -100
// SByte.Parse('$100', AllowCurrencySymbol)) = 100
// '$100' and Integer throw a FormatException
// SByte.Parse('100.0', AllowDecimalPoint)) = 100
// SByte.Parse('1e02', AllowExponent)) = 100
// SByte.Parse('(100)', AllowParentheses)) = -100
Imports System.Globalization
Module modMain
Public Sub Main()
Dim byteString As String
byteString = " 123"
ParseString(byteString, NumberStyles.None)
ParseString(byteString, NumberStyles.Integer)
byteString = "3A"
ParseString(byteString, NumberStyles.AllowHexSpecifier)
byteString = "21"
ParseString(byteString, NumberStyles.Integer)
ParseString(byteString, NumberStyles.AllowHexSpecifier)
byteString = "-22"
ParseString(byteString, NumberStyles.Integer)
ParseString(byteString, NumberStyles.AllowParentheses)
byteString = "(45)"
ParseString(byteString, NumberStyles.AllowParentheses)
byteString = "000,000,056"
ParseString(byteString, NumberStyles.Integer)
ParseString(byteString, NumberStyles.Integer Or NumberStyles.AllowThousands)
End Sub
Private Sub ParseString(value As String, style As NumberStyles)
Dim number As SByte
If value Is Nothing Then Console.WriteLine("Cannot parse a null string...")
Try
number = SByte.Parse(value, style, NumberFormatInfo.CurrentInfo)
Console.WriteLine("SByte.Parse('{0}', {1}) = {2}", value, style, number)
Catch e As FormatException
Console.WriteLine("'{0}' and {1} throw a FormatException", value, style)
Catch e As OverflowException
Console.WriteLine("'{0}' is outside the range of a signed byte",
value)
End Try
End Sub
End Module
' The example displays the following information to the console:
' ' 123' and None throw a FormatException
' SByte.Parse(" 123", Integer)) = 123
' SByte.Parse("3A", AllowHexSpecifier)) = 58
' SByte.Parse("21", Integer)) = 21
' SByte.Parse("21", AllowHexSpecifier)) = 33
' SByte.Parse("-22", Integer)) = -22
' '-22' and AllowParentheses throw a FormatException
' SByte.Parse("(45)", AllowParentheses)) = -45
' '000,000,056' and Integer throw a FormatException
' SByte.Parse("000,000,056", Integer, AllowThousands)) = 56
備註
style
參數會定義 s
參數中允許的樣式專案(例如空格符或正負號符號),讓剖析作業成功。 它必須是來自 NumberStyles 列舉的位旗標組合。
根據 style
的值,s
參數可能包含下列元素:
[ws][$][符號]位數[.fractional_digits][E[符號]exponential_digits][ws] ]
如果 style
包含 AllowHexSpecifier,s
參數可能包含下列元素:
[ws]hexdigits[ws]
方括弧 ([ 和 ]) 中的元素是選擇性的。 下表描述每個元素。
元素 | 描述 |
---|---|
ws | 選擇性的空格符。 如果 style 包含 NumberStyles.AllowLeadingWhite 旗標,則會在 s 開頭顯示空格符,如果 style 包含 NumberStyles.AllowTrailingWhite 旗標,則會出現在 s 結尾。 |
$ | 特定文化特性的貨幣符號。 字串中的位置是由目前文化特性的 NumberFormatInfo.CurrencyPositivePattern 屬性所定義。 如果 style 包含 NumberStyles.AllowCurrencySymbol 旗標,則目前的文化特性貨幣符號可能會出現在 s 中。 |
簽署 | 選擇性符號。 如果 style 包含 NumberStyles.AllowLeadingSign 旗標,則符號可能會出現在 s 開頭,如果 style 包含 NumberStyles.AllowTrailingSign 旗標,則它可能會出現 s 結尾。 括弧可用於 s ,如果 style 包含 NumberStyles.AllowParentheses 旗標,則表示負值。 |
位數 | 從 0 到 9 的數位序列。 |
。 | 特定文化特性的小數點符號。 如果 style 包含 NumberStyles.AllowDecimalPoint 旗標,則目前文化特性的小數點符號可能會出現在 s 中。 |
fractional_digits | 如果 style 包含 NumberStyles.AllowExponent 旗標,則為 0-9 的一或多個數位,如果沒有,則為一或多個數位 0 的出現次數。 只有 style 包含 NumberStyles.AllowDecimalPoint 旗標時,小數位數才會出現在 s 中。 |
E | “e” 或 “E” 字元,表示值是以指數(科學)表示法表示。 如果 style 包含 NumberStyles.AllowExponent 旗標,s 參數就可以以指數表示法來表示數位。 |
exponential_digits | 從 0 到 9 的數位序列。 如果 style 包含 NumberStyles.AllowExponent 旗標,s 參數就可以以指數表示法來表示數位。 |
hexdigits | 從 0 到 f 或 0 到 F 的十六進位數位序列。 |
注意
不論 style
自變數的值為何,剖析作業都會忽略 s
中任何終止的 NUL (U+0000) 字元。
只有小數字數的字串(對應至 NumberStyles.None 樣式)一律會成功剖析。 其餘大部分 NumberStyles 成員控件元素可能存在,但不需要存在,在此輸入字串中。 下表指出個別 NumberStyles 成員如何影響 s
中可能出現的專案。
非複合 NumberStyles 值 |
除了數位以外,s 中允許的專案 |
---|---|
NumberStyles.None | 只有十進位數。 |
NumberStyles.AllowDecimalPoint | 小數點 (.) 和 fractional_digits 專案。 不過,如果樣式不包含 NumberStyles.AllowExponent 旗標,fractional_digits 必須只包含一或多個0位數;否則,會擲回 OverflowException。 |
NumberStyles.AllowExponent | “e” 或 “E” 字元,表示指數表示法,以及 exponential_digits。 |
NumberStyles.AllowLeadingWhite |
s 開頭的 ws ws 專案。 |
NumberStyles.AllowTrailingWhite |
s 結尾的 ws 專案。 |
NumberStyles.AllowLeadingSign | 位數前的正負號。 |
NumberStyles.AllowTrailingSign | 數字之後的正負號,。 |
NumberStyles.AllowParentheses | 括弧前後 數位 表示負值。 |
NumberStyles.AllowThousands | 群組分隔符 (,) 元素。 雖然群組分隔符可以出現在 s 中,但前面必須只有一或多個0位數。 |
NumberStyles.AllowCurrencySymbol | currency ($) 元素。 |
如果使用 NumberStyles.AllowHexSpecifier 旗標,s
必須是十六進位值。 有效的十六進位數位是0-9、a-f和 A-F。 唯一可以與它結合的其他旗標是 NumberStyles.AllowLeadingWhite 和 NumberStyles.AllowTrailingWhite。 (NumberStyles 列舉包含包含兩個空格符旗標的複合數字樣式 NumberStyles.HexNumber。
注意
如果 s
參數是十六進位數位的字串表示法,則不能前面加上任何裝飾專案(例如 0x
或 &h
),將它區分為十六進位數。 這會導致剖析作業擲回例外狀況。
如果 s
代表十六進位數位,Parse(String, NumberStyles) 方法會將位元組的高階位解譯為符號位。
provider
參數是 IFormatProvider 實作,其 GetFormat 方法會傳回 NumberFormatInfo 物件,以提供 s
格式的文化特性特定資訊。 有三種方式可以使用 provider
參數,將自定義格式資訊提供給剖析作業:
您可以傳遞提供格式化資訊的實際 NumberFormatInfo 物件。 (其實作 GetFormat 只是傳回自己。
您可以傳遞 CultureInfo 物件,以指定要使用其格式的文化特性。 其 NumberFormat 屬性會提供格式資訊。
您可以傳遞自訂 IFormatProvider 實作。 其 GetFormat 方法必須具現化並傳回提供格式化資訊的 NumberFormatInfo 物件。
如果 provider
是 null
,則會使用目前文化特性的 NumberFormatInfo 物件。
適用於
Parse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider)
- 來源:
- SByte.cs
- 來源:
- SByte.cs
- 來源:
- SByte.cs
重要
此 API 不符合 CLS 規範。
將指定樣式和特定文化特性格式的數位範圍表示轉換為其8位帶正負號的數位。
public static sbyte Parse (ReadOnlySpan<char> s, System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer, IFormatProvider? provider = default);
[System.CLSCompliant(false)]
public static sbyte Parse (ReadOnlySpan<char> s, System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer, IFormatProvider provider = default);
[System.CLSCompliant(false)]
public static sbyte Parse (ReadOnlySpan<char> s, System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer, IFormatProvider? provider = default);
static member Parse : ReadOnlySpan<char> * System.Globalization.NumberStyles * IFormatProvider -> sbyte
[<System.CLSCompliant(false)>]
static member Parse : ReadOnlySpan<char> * System.Globalization.NumberStyles * IFormatProvider -> sbyte
Public Shared Function Parse (s As ReadOnlySpan(Of Char), Optional style As NumberStyles = System.Globalization.NumberStyles.Integer, Optional provider As IFormatProvider = Nothing) As SByte
參數
- s
- ReadOnlySpan<Char>
範圍,包含表示要轉換之數位的字元。 範圍是使用 style
所指定的樣式來解譯。
- style
- NumberStyles
列舉值的位元組合,表示可以存在於 s
中的樣式專案。 要指定的一般值是 Integer。
- provider
- IFormatProvider
物件,提供與 s
相關的特定文化特性格式資訊。 如果 provider
是 null
,則會使用線程目前的文化特性。
傳回
8 位帶正負號的位元元組值,相當於 s
參數中指定的數位。
實作
- 屬性
適用於
Parse(ReadOnlySpan<Byte>, NumberStyles, IFormatProvider)
- 來源:
- SByte.cs
- 來源:
- SByte.cs
將UTF-8字元的範圍剖析為值。
public static sbyte Parse (ReadOnlySpan<byte> utf8Text, System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer, IFormatProvider? provider = default);
static member Parse : ReadOnlySpan<byte> * System.Globalization.NumberStyles * IFormatProvider -> sbyte
Public Shared Function Parse (utf8Text As ReadOnlySpan(Of Byte), Optional style As NumberStyles = System.Globalization.NumberStyles.Integer, Optional provider As IFormatProvider = Nothing) As SByte
參數
- utf8Text
- ReadOnlySpan<Byte>
要剖析的UTF-8字元範圍。
- style
- NumberStyles
數字樣式的位元組合,可以存在於 utf8Text
中。
- provider
- IFormatProvider
物件,提供與 utf8Text
相關的特定文化特性格式資訊。
傳回
剖析 utf8Text
的結果。
實作
適用於
Parse(String, IFormatProvider)
- 來源:
- SByte.cs
- 來源:
- SByte.cs
- 來源:
- SByte.cs
將指定之特定文化特性格式之數位的字串表示轉換為其相等的8位帶正負號的整數。
public:
static System::SByte Parse(System::String ^ s, IFormatProvider ^ provider);
public:
static System::SByte Parse(System::String ^ s, IFormatProvider ^ provider) = IParsable<System::SByte>::Parse;
[System.CLSCompliant(false)]
public static sbyte Parse (string s, IFormatProvider provider);
public static sbyte Parse (string s, IFormatProvider? provider);
[System.CLSCompliant(false)]
public static sbyte Parse (string s, IFormatProvider? provider);
[<System.CLSCompliant(false)>]
static member Parse : string * IFormatProvider -> sbyte
static member Parse : string * IFormatProvider -> sbyte
Public Shared Function Parse (s As String, provider As IFormatProvider) As SByte
參數
- provider
- IFormatProvider
物件,提供與 s
相關的特定文化特性格式資訊。 如果 provider
是 null
,則會使用線程目前的文化特性。
傳回
8 位帶正負號的整數,相當於 s
中指定的數位。
實作
- 屬性
例外狀況
s
null
。
s
格式不正確。
s
代表小於 SByte.MinValue 或大於 SByte.MaxValue的數位。
範例
下列範例會定義自定義 NumberFormatInfo 物件,該物件會將底狀符號 (~) 定義為負號。 然後,它會使用此自定義 NumberFormatInfo 物件以及代表不因文化特性的 CultureInfo 物件,剖析數個數值字串。
using System;
using System.Globalization;
public class Example
{
public static void Main()
{
NumberFormatInfo nf = new NumberFormatInfo();
nf.NegativeSign = "~";
string[] values = { "-103", "+12", "~16", " 1", "~255" };
IFormatProvider[] providers = { nf, CultureInfo.InvariantCulture };
foreach (IFormatProvider provider in providers)
{
Console.WriteLine("Conversions using {0}:", ((object) provider).GetType().Name);
foreach (string value in values)
{
try {
Console.WriteLine(" Converted '{0}' to {1}.",
value, SByte.Parse(value, provider));
}
catch (FormatException) {
Console.WriteLine(" Unable to parse '{0}'.", value);
}
catch (OverflowException) {
Console.WriteLine(" '{0}' is out of range of the SByte type.", value);
}
}
}
}
}
// The example displays the following output:
// Conversions using NumberFormatInfo:
// Unable to parse '-103'.
// Converted '+12' to 12.
// Converted '~16' to -16.
// Converted ' 1' to 1.
// '~255' is out of range of the SByte type.
// Conversions using CultureInfo:
// Converted '-103' to -103.
// Converted '+12' to 12.
// Unable to parse '~16'.
// Converted ' 1' to 1.
// Unable to parse '~255'.
open System
open System.Globalization
let nf = NumberFormatInfo()
nf.NegativeSign <- "~"
let values = [| "-103"; "+12"; "~16"; " 1"; "~255" |]
let providers: IFormatProvider[] = [| nf; CultureInfo.InvariantCulture |]
for provider in providers do
printfn $"Conversions using {(box provider).GetType().Name}:"
for value in values do
try
printfn $" Converted '{value}' to {SByte.Parse(value, provider)}."
with
| :? FormatException ->
printfn $" Unable to parse '{value}'."
| :? OverflowException ->
printfn $" '{value}' is out of range of the SByte type."
// The example displays the following output:
// Conversions using NumberFormatInfo:
// Unable to parse '-103'.
// Converted '+12' to 12.
// Converted '~16' to -16.
// Converted ' 1' to 1.
// '~255' is out of range of the SByte type.
// Conversions using CultureInfo:
// Converted '-103' to -103.
// Converted '+12' to 12.
// Unable to parse '~16'.
// Converted ' 1' to 1.
// Unable to parse '~255'.
Imports System.Globalization
Module Example
Public Sub Main()
Dim nf As New NumberFormatInfo()
nf.NegativeSign = "~"
Dim values() As String = { "-103", "+12", "~16", " 1", "~255" }
Dim providers() As IFormatProvider = { nf, CultureInfo.InvariantCulture }
For Each provider As IFormatProvider In providers
Console.WriteLine("Conversions using {0}:", CObj(provider).GetType().Name)
For Each value As String In values
Try
Console.WriteLine(" Converted '{0}' to {1}.", _
value, SByte.Parse(value, provider))
Catch e As FormatException
Console.WriteLine(" Unable to parse '{0}'.", value)
Catch e As OverflowException
Console.WriteLine(" '{0}' is out of range of the SByte type.", value)
End Try
Next
Next
End Sub
End Module
' The example displays '
' Conversions using NumberFormatInfo:
' Unable to parse '-103'.
' Converted '+12' to 12.
' Converted '~16' to -16.
' Converted ' 1' to 1.
' '~255' is out of range of the SByte type.
' Conversions using CultureInfo:
' Converted '-103' to -103.
' Converted '+12' to 12.
' Unable to parse '~16'.
' Converted ' 1' to 1.
' Unable to parse '~255'.
備註
s
參數包含一些表單:
[ws][符號]數位[ws]
方括弧 ([ 和 ]) 中的元素是選擇性的。 下表描述每個元素。
元素 | 描述 |
---|---|
ws | 選擇性的空格符。 |
簽署 | 選擇性符號。 |
位數 | 範圍從 0 到 9 的數位序列。 |
s
參數是使用 Integer 樣式來解譯。 除了位元組值的十進位數之外,只允許具有前置正負號的前置和尾端空格。 若要使用可存在於 s
中的特定文化特性格式資訊來明確定義樣式專案,請使用 Parse(String, NumberStyles, IFormatProvider) 方法。
provider
參數是 IFormatProvider 實作,其 GetFormat 方法會傳回 NumberFormatInfo 物件,以提供 s
格式的文化特性特定資訊。 有三種方式可以使用 provider
參數,將自定義格式資訊提供給剖析作業:
您可以傳遞提供格式化資訊的實際 NumberFormatInfo 物件。 (其實作 GetFormat 只是傳回自己。
您可以傳遞 CultureInfo 物件,以指定要使用其格式的文化特性。 其 NumberFormat 屬性會提供格式資訊。
您可以傳遞自訂 IFormatProvider 實作。 其 GetFormat 方法必須具現化並傳回提供格式化資訊的 NumberFormatInfo 物件。
如果 provider
是 null
,則會使用目前文化特性的 NumberFormatInfo 物件。
另請參閱
- ToString()
- TryParse
- .NET 中剖析數值字串
適用於
Parse(String)
- 來源:
- SByte.cs
- 來源:
- SByte.cs
- 來源:
- SByte.cs
將數位的字串表示轉換為其相等的8位帶正負號的整數。
public:
static System::SByte Parse(System::String ^ s);
[System.CLSCompliant(false)]
public static sbyte Parse (string s);
public static sbyte Parse (string s);
[<System.CLSCompliant(false)>]
static member Parse : string -> sbyte
static member Parse : string -> sbyte
Public Shared Function Parse (s As String) As SByte
參數
傳回
8 位帶正負號的整數,相當於 s
參數中包含的數位。
- 屬性
例外狀況
s
null
。
s
不包含選擇性符號,後面接著數位序列(零到九)。
s
代表小於 SByte.MinValue 或大於 SByte.MaxValue的數位。
範例
下列範例示範如何使用 Parse 方法,將字串值轉換成帶正負號的位元元組值。 產生的帶正負號位元組值接著會顯示至主控台。
// Define an array of numeric strings.
string[] values = { "-16", " -3", "+ 12", " +12 ", " 12 ",
"+120", "(103)", "192", "-160" };
// Parse each string and display the result.
foreach (string value in values)
{
try {
Console.WriteLine("Converted '{0}' to the SByte value {1}.",
value, SByte.Parse(value));
}
catch (FormatException) {
Console.WriteLine("'{0}' cannot be parsed successfully by SByte type.",
value);
}
catch (OverflowException) {
Console.WriteLine("'{0}' is out of range of the SByte type.",
value);
}
}
// The example displays the following output:
// Converted '-16' to the SByte value -16.
// Converted ' -3' to the SByte value -3.
// '+ 12' cannot be parsed successfully by SByte type.
// Converted ' +12 ' to the SByte value 12.
// Converted ' 12 ' to the SByte value 12.
// Converted '+120' to the SByte value 120.
// '(103)' cannot be parsed successfully by SByte type.
// '192' is out of range of the SByte type.
// '-160' is out of range of the SByte type.
open System
// Define an array of numeric strings.
let values =
[| "-16"; " -3"; "+ 12"; " +12 "; " 12 "
"+120"; "(103)"; "192"; "-160" |]
// Parse each string and display the result.
for value in values do
try
printfn $"Converted '{value}' to the SByte value {SByte.Parse value}."
with
| :? FormatException ->
printfn $"'{value}' cannot be parsed successfully by SByte type."
| :? OverflowException ->
printfn $"'{value}' is out of range of the SByte type."
// The example displays the following output:
// Converted '-16' to the SByte value -16.
// Converted ' -3' to the SByte value -3.
// '+ 12' cannot be parsed successfully by SByte type.
// Converted ' +12 ' to the SByte value 12.
// Converted ' 12 ' to the SByte value 12.
// Converted '+120' to the SByte value 120.
// '(103)' cannot be parsed successfully by SByte type.
// '192' is out of range of the SByte type.
// '-160' is out of range of the SByte type.
' Define an array of numeric strings.
Dim values() As String = { "-16", " -3", "+ 12", " +12 ", " 12 ", _
"+120", "(103)", "192", "-160" }
' Parse each string and display the result.
For Each value As String In values
Try
Console.WriteLine("Converted '{0}' to the SByte value {1}.", _
value, SByte.Parse(value))
Catch e As FormatException
Console.WriteLine("'{0}' cannot be parsed successfully by SByte type.", _
value)
Catch e As OverflowException
Console.WriteLine("'{0}' is out of range of the SByte type.", _
value)
End Try
Next
' The example displays the following output:
' Converted '-16' to the SByte value -16.
' Converted ' -3' to the SByte value -3.
' '+ 12' cannot be parsed successfully by SByte type.
' Converted ' +12 ' to the SByte value 12.
' Converted ' 12 ' to the SByte value 12.
' Converted '+120' to the SByte value 120.
' '(103)' cannot be parsed successfully by SByte type.
' '192' is out of range of the SByte type.
' '-160' is out of range of the SByte type.
備註
s
參數包含一些表單:
[ws][符號]數位[ws]
方括弧 ([ 和 ]) 中的元素是選擇性的。 下表描述每個元素。
元素 | 描述 |
---|---|
ws | 選擇性的空格符。 |
簽署 | 選擇性符號。 |
位數 | 範圍從 0 到 9 的數位序列。 |
s
參數是使用 NumberStyles.Integer 樣式來解譯。 除了位元組值的十進位數之外,只允許具有前置正負號的前置和尾端空格。 若要明確定義可以存在於 s
中的樣式專案,請使用 Parse(String, NumberStyles) 或 Parse(String, NumberStyles, IFormatProvider) 方法。
s
參數是使用針對目前系統文化特性初始化之 NumberFormatInfo 中的格式資訊來剖析。 如需詳細資訊,請參閱 NumberFormatInfo.CurrentInfo。 若要使用其他文化特性的格式資訊來剖析字串,請使用 Parse(String, NumberStyles, IFormatProvider) 方法。
另請參閱
適用於
Parse(ReadOnlySpan<Char>, IFormatProvider)
- 來源:
- SByte.cs
- 來源:
- SByte.cs
- 來源:
- SByte.cs
將字元範圍剖析為值。
public:
static System::SByte Parse(ReadOnlySpan<char> s, IFormatProvider ^ provider) = ISpanParsable<System::SByte>::Parse;
public static sbyte Parse (ReadOnlySpan<char> s, IFormatProvider? provider);
static member Parse : ReadOnlySpan<char> * IFormatProvider -> sbyte
Public Shared Function Parse (s As ReadOnlySpan(Of Char), provider As IFormatProvider) As SByte
參數
- s
- ReadOnlySpan<Char>
要剖析的字元範圍。
- provider
- IFormatProvider
物件,提供與 s
相關的特定文化特性格式資訊。
傳回
剖析 s
的結果。
實作
適用於
Parse(ReadOnlySpan<Byte>, IFormatProvider)
- 來源:
- SByte.cs
- 來源:
- SByte.cs
將UTF-8字元的範圍剖析為值。
public:
static System::SByte Parse(ReadOnlySpan<System::Byte> utf8Text, IFormatProvider ^ provider) = IUtf8SpanParsable<System::SByte>::Parse;
public static sbyte Parse (ReadOnlySpan<byte> utf8Text, IFormatProvider? provider);
static member Parse : ReadOnlySpan<byte> * IFormatProvider -> sbyte
Public Shared Function Parse (utf8Text As ReadOnlySpan(Of Byte), provider As IFormatProvider) As SByte
參數
- utf8Text
- ReadOnlySpan<Byte>
要剖析的UTF-8字元範圍。
- provider
- IFormatProvider
物件,提供與 utf8Text
相關的特定文化特性格式資訊。
傳回
剖析 utf8Text
的結果。
實作
適用於
Parse(String, NumberStyles)
- 來源:
- SByte.cs
- 來源:
- SByte.cs
- 來源:
- SByte.cs
將指定樣式中數位的字串表示轉換為其8位帶正負號的整數對等專案。
public:
static System::SByte Parse(System::String ^ s, System::Globalization::NumberStyles style);
[System.CLSCompliant(false)]
public static sbyte Parse (string s, System.Globalization.NumberStyles style);
public static sbyte Parse (string s, System.Globalization.NumberStyles style);
[<System.CLSCompliant(false)>]
static member Parse : string * System.Globalization.NumberStyles -> sbyte
static member Parse : string * System.Globalization.NumberStyles -> sbyte
Public Shared Function Parse (s As String, style As NumberStyles) As SByte
參數
- s
- String
字串,包含要轉換的數位。 字串會使用 style
所指定的樣式來解譯。
- style
- NumberStyles
列舉值的位元組合,表示可以存在於 s
中的樣式專案。 要指定的一般值是 Integer。
傳回
8 位帶正負號的整數,相當於 s
中指定的數位。
- 屬性
例外狀況
s
null
。
s
的格式與 style
不相容。
範例
下列範例會使用 Parse(String, NumberStyles) 方法剖析 SByte 值的字串表示。 這個範例目前的文化特性 en-US。
using System;
using System.Globalization;
public class Example
{
public static void Main()
{
NumberStyles style;
sbyte number;
// Parse value with no styles allowed.
string[] values1 = { " 121 ", "121", "-121" };
style = NumberStyles.None;
Console.WriteLine("Styles: {0}", style.ToString());
foreach (string value in values1)
{
try {
number = SByte.Parse(value, style);
Console.WriteLine(" Converted '{0}' to {1}.", value, number);
}
catch (FormatException) {
Console.WriteLine(" Unable to parse '{0}'.", value);
}
}
Console.WriteLine();
// Parse value with trailing sign.
style = NumberStyles.Integer | NumberStyles.AllowTrailingSign;
string[] values2 = { " 103+", " 103 +", "+103", "(103)", " +103 " };
Console.WriteLine("Styles: {0}", style.ToString());
foreach (string value in values2)
{
try {
number = SByte.Parse(value, style);
Console.WriteLine(" Converted '{0}' to {1}.", value, number);
}
catch (FormatException) {
Console.WriteLine(" Unable to parse '{0}'.", value);
}
catch (OverflowException) {
Console.WriteLine(" '{0}' is out of range of the SByte type.", value);
}
}
Console.WriteLine();
}
}
// The example displays the following output:
// Styles: None
// Unable to parse ' 121 '.
// Converted '121' to 121.
// Unable to parse '-121'.
//
// Styles: Integer, AllowTrailingSign
// Converted ' 103+' to 103.
// Converted ' 103 +' to 103.
// Converted '+103' to 103.
// Unable to parse '(103)'.
// Converted ' +103 ' to 103.
open System
open System.Globalization
// Parse value with no styles allowed.
let values1 = [| " 121 "; "121"; "-121" |]
let style = NumberStyles.None
printfn $"Styles: {style}"
for value in values1 do
try
let number = SByte.Parse(value, style)
printfn $" Converted '{value}' to {number}."
with :? FormatException ->
printfn $" Unable to parse '{value}'."
printfn ""
// Parse value with trailing sign.
let style2 = NumberStyles.Integer ||| NumberStyles.AllowTrailingSign
let values2 = [| " 103+"; " 103 +"; "+103"; "(103)"; " +103 " |]
printfn $"Styles: {style2}"
for value in values2 do
try
let number = SByte.Parse(value, style2)
printfn $" Converted '{value}' to {number}."
with
| :? FormatException ->
printfn $" Unable to parse '{value}'."
| :? OverflowException ->
printfn $" '{value}' is out of range of the SByte type."
printfn ""
// The example displays the following output:
// Styles: None
// Unable to parse ' 121 '.
// Converted '121' to 121.
// Unable to parse '-121'.
//
// Styles: Integer, AllowTrailingSign
// Converted ' 103+' to 103.
// Converted ' 103 +' to 103.
// Converted '+103' to 103.
// Unable to parse '(103)'.
// Converted ' +103 ' to 103.
Imports System.Globalization
Module Example
Public Sub Main()
Dim style As NumberStyles
Dim number As SByte
' Parse value with no styles allowed.
Dim values1() As String = { " 121 ", "121", "-121" }
style = NumberStyles.None
Console.WriteLine("Styles: {0}", style.ToString())
For Each value As String In values1
Try
number = SByte.Parse(value, style)
Console.WriteLine(" Converted '{0}' to {1}.", value, number)
Catch e As FormatException
Console.WriteLine(" Unable to parse '{0}'.", value)
End Try
Next
Console.WriteLine()
' Parse value with trailing sign.
style = NumberStyles.Integer Or NumberStyles.AllowTrailingSign
Dim values2() As String = { " 103+", " 103 +", "+103", "(103)", " +103 " }
Console.WriteLine("Styles: {0}", style.ToString())
For Each value As String In values2
Try
number = SByte.Parse(value, style)
Console.WriteLine(" Converted '{0}' to {1}.", value, number)
Catch e As FormatException
Console.WriteLine(" Unable to parse '{0}'.", value)
Catch e As OverflowException
Console.WriteLine(" '{0}' is out of range of the SByte type.", value)
End Try
Next
Console.WriteLine()
End Sub
End Module
' The example displays the following output:
' Styles: None
' Unable to parse ' 121 '.
' Converted '121' to 121.
' Unable to parse '-121'.
'
' Styles: Integer, AllowTrailingSign
' Converted ' 103+' to 103.
' Converted ' 103 +' to 103.
' Converted '+103' to 103.
' Unable to parse '(103)'.
' Converted ' +103 ' to 103.
備註
style
參數會定義 s
參數中允許的樣式專案(例如空格符或正負號符號),讓剖析作業成功。 它必須是來自 NumberStyles 列舉的位旗標組合。
根據 style
的值,s
參數可能包含下列元素:
[ws][$][符號]位數[.fractional_digits][E[符號]exponential_digits][ws] ]
如果 style
包含 NumberStyles.AllowHexSpecifier,s
參數可能包含下列元素:
[ws]hexdigits[ws]
方括弧 ([ 和 ]) 中的元素是選擇性的。 下表描述每個元素。
元素 | 描述 |
---|---|
ws | 選擇性的空格符。 如果 style 包含 NumberStyles.AllowLeadingWhite 旗標,則空格符會出現在 s 開頭,如果樣式包含 NumberStyles.AllowTrailingWhite 旗標,則會出現在 s 結尾。 |
$ | 特定文化特性的貨幣符號。 字串中的位置是由目前文化特性的 NumberFormatInfo.CurrencyPositivePattern 屬性所定義。 如果 style 包含 NumberStyles.AllowCurrencySymbol 旗標,則目前的文化特性貨幣符號可能會出現在 s 中。 |
簽署 | 選擇性符號。 如果 style 包含 NumberStyles.AllowLeadingSign 旗標,則符號可能會出現在 s 開頭,如果 style 包含 NumberStyles.AllowTrailingSign 旗標,則它可能會出現在 s 結尾。 括弧可用於 s ,如果 style 包含 NumberStyles.AllowParentheses 旗標,則表示負值。 |
位數 | 從 0 到 9 的數位序列。 |
。 | 特定文化特性的小數點符號。 如果 style 包含 NumberStyles.AllowDecimalPoint 旗標,則目前文化特性的小數點符號可能會出現在 s 中。 |
fractional_digits | 如果 style 包含 NumberStyles.AllowExponent 旗標,則為 0-9 的一或多個數位,如果沒有,則為一或多個數位 0 的出現次數。 只有 style 包含 NumberStyles.AllowDecimalPoint 旗標時,小數位數才會出現在 s 中。 |
E | “e” 或 “E” 字元,表示值是以指數(科學)表示法表示。 如果 style 包含 NumberStyles.AllowExponent 旗標,s 參數就可以以指數表示法來表示數位。 |
exponential_digits | 數位 0-9 的一或多個出現次數。 如果 style 包含 NumberStyles.AllowExponent 旗標,s 參數就可以以指數表示法來表示數位。 |
hexdigits | 從 0 到 f 或 0 到 F 的十六進位數位序列。 |
注意
不論 style
自變數的值為何,剖析作業都會忽略 s
中任何終止的 NUL (U+0000) 字元。
只有小數字數的字串(對應至 NumberStyles.None 樣式)一律會成功剖析。 其餘大部分 NumberStyles 成員控件元素,這些元素可能存在,但不需要出現在輸入字串中。 下表指出個別 NumberStyles 成員如何影響 s
中可能出現的專案。
非複合 NumberStyles 值 | 除了數位以外, 中允許的專案 |
---|---|
NumberStyles.None | 只有十進位數。 |
NumberStyles.AllowDecimalPoint | 小數點 (.) 和 fractional_digits 專案。 不過,如果 style 不包含 NumberStyles.AllowExponent 旗標,fractional_digits 只能包含一或多個 0 位數;否則,會擲回 OverflowException。 |
NumberStyles.AllowExponent | “e” 或 “E” 字元,表示指數表示法,以及 exponential_digits。 |
NumberStyles.AllowLeadingWhite |
s 開頭的 ws ws 專案。 |
NumberStyles.AllowTrailingWhite |
s 結尾的 ws 專案。 |
NumberStyles.AllowLeadingSign | 位數前的正負號。 |
NumberStyles.AllowTrailingSign | 數字之後的正負號,。 |
NumberStyles.AllowParentheses | 以括弧括住數值的括弧形式,符號 專案。 |
NumberStyles.AllowThousands | 群組分隔符 (,) 專案。 雖然群組分隔符可以出現在 s 中,但前面必須只有一或多個0位數。 |
NumberStyles.AllowCurrencySymbol | currency ($) 元素。 |
如果使用 NumberStyles.AllowHexSpecifier 旗標,s
必須是十六進位值。 有效的十六進位數位是0-9、a-f和 A-F。 不支援 「0x」 之類的前置詞,並導致剖析作業失敗。
style
中唯一可以合併的其他旗標是 NumberStyles.AllowLeadingWhite 和 NumberStyles.AllowTrailingWhite。 (NumberStyles 列舉包含包含兩個空格符旗標的複合數字樣式 NumberStyles.HexNumber。
注意
如果 s
參數是十六進位數位的字串表示法,則不能前面加上任何裝飾專案(例如 0x
或 &h
),將它區分為十六進位數。 這會導致剖析作業擲回例外狀況。
如果 s
代表十六進位數位,Parse(String, NumberStyles) 方法會將位元組的高階位解譯為符號位。
s
參數是使用目前系統文化特性初始化之 NumberFormatInfo 物件中的格式資訊來剖析。 若要使用其他文化特性的格式資訊,請呼叫 Parse(String, NumberStyles, IFormatProvider) 多載。
另請參閱
- ToString()
- TryParse
- .NET 中剖析數值字串
- .NET 中的格式設定類型