Single.Parse 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将数字的字符串表示形式转换为其等效的单精度浮点数。
重载
| 名称 | 说明 |
|---|---|
| Parse(String) |
将数字的字符串表示形式转换为其等效的单精度浮点数。 |
| Parse(ReadOnlySpan<Byte>, IFormatProvider) |
将 UTF-8 字符的范围分析为值。 |
| Parse(ReadOnlySpan<Char>, IFormatProvider) |
将字符的范围分析为值。 |
| Parse(String, NumberStyles) |
将指定样式中的数字的字符串表示形式转换为其等效的单精度浮点数。 |
| Parse(String, IFormatProvider) |
将指定区域性特定格式的数字的字符串表示形式转换为其等效的单精度浮点数。 |
| Parse(ReadOnlySpan<Byte>, NumberStyles, IFormatProvider) |
将 UTF-8 字符的范围分析为值。 |
| Parse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider) |
将包含指定样式和区域性特定格式的数字的字符串表示形式的字符范围转换为其等效的单精度浮点数。 |
| Parse(String, NumberStyles, IFormatProvider) |
将指定样式和区域性特定格式的数字的字符串表示形式转换为其等效的单精度浮点数。 |
注解
在 .NET Core 3.0 及更高版本中,无法表示的值舍 PositiveInfinity 入到 NegativeInfinity IEEE 754 规范或根据需要舍入。 在早期版本中(包括 .NET Framework)中,分析的值太大而无法表示导致失败。
Parse(String)
- Source:
- Single.cs
- Source:
- Single.cs
- Source:
- Single.cs
- Source:
- Single.cs
- Source:
- Single.cs
将数字的字符串表示形式转换为其等效的单精度浮点数。
public:
static float Parse(System::String ^ s);
public static float Parse(string s);
static member Parse : string -> single
Public Shared Function Parse (s As String) As Single
参数
- s
- String
包含要转换的数字的字符串。
返回
一个单精度浮点数,等效于在 中指定的 s数值或符号。
例外
s 是 null。
s 不表示有效格式的数字。
仅限 .NET Framework: s 表示小于 Single.MinValue 或大于 Single.MaxValue 的数字。
示例
下面的示例使用 Parse(String) 该方法将字符串数组转换为等效 Single 值。
using System;
public class Example
{
public static void Main()
{
string[] values = { "100", "(100)", "-123,456,789", "123.45e+6",
"+500", "5e2", "3.1416", "600.", "-.123",
"-Infinity", "-1E-16", Double.MaxValue.ToString(),
Single.MinValue.ToString(), String.Empty };
foreach (string value in values)
{
try {
float number = Single.Parse(value);
Console.WriteLine("{0} -> {1}", value, number);
}
catch (FormatException) {
Console.WriteLine("'{0}' is not in a valid format.", value);
}
catch (OverflowException) {
Console.WriteLine("{0} is outside the range of a Single.", value);
}
}
}
}
// The example displays the following output:
// 100 -> 100
// '(100)' is not in a valid format.
// -123,456,789 -> -1.234568E+08
// 123.45e+6 -> 1.2345E+08
// +500 -> 500
// 5e2 -> 500
// 3.1416 -> 3.1416
// 600. -> 600
// -.123 -> -0.123
// -Infinity -> -Infinity
// -1E-16 -> -1E-16
// 1.79769313486232E+308 is outside the range of a Single.
// -3.402823E+38 -> -3.402823E+38
// '' is not in a valid format.
open System
let values =
[| "100"; "(100)"; "-123,456,789"; "123.45e+6"
"+500"; "5e2"; "3.1416"; "600."; "-.123"
"-Infinity"; "-1E-16"; string Double.MaxValue
string Single.MinValue; String.Empty |]
for value in values do
try
let number = Single.Parse value
printfn $"{value} -> {number}"
with
| :? FormatException ->
printfn $"'{value}' is not in a valid format."
| :? OverflowException ->
printfn $"{value} is outside the range of a Single."
// The example displays the following output:
// 100 -> 100
// '(100)' is not in a valid format.
// -123,456,789 -> -1.234568E+08
// 123.45e+6 -> 1.2345E+08
// +500 -> 500
// 5e2 -> 500
// 3.1416 -> 3.1416
// 600. -> 600
// -.123 -> -0.123
// -Infinity -> -Infinity
// -1E-16 -> -1E-16
// 1.79769313486232E+308 is outside the range of a Single.
// -3.402823E+38 -> -3.402823E+38
// '' is not in a valid format.
Module Example
Public Sub Main()
Dim values() As String = { "100", "(100)", "-123,456,789", "123.45e+6", _
"+500", "5e2", "3.1416", "600.", "-.123", _
"-Infinity", "-1E-16", Double.MaxValue.ToString(), _
Single.MinValue.ToString(), String.Empty }
For Each value As String In values
Try
Dim number As Single = Single.Parse(value)
Console.WriteLine("{0} -> {1}", value, number)
Catch e As FormatException
Console.WriteLine("'{0}' is not in a valid format.", value)
Catch e As OverflowException
Console.WriteLine("{0} is outside the range of a Single.", value)
End Try
Next
End Sub
End Module
' The example displays the following output:
' 100 -> 100
' '(100)' is not in a valid format.
' -123,456,789 -> -1.234568E+08
' 123.45e+6 -> 1.2345E+08
' +500 -> 500
' 5e2 -> 500
' 3.1416 -> 3.1416
' 600. -> 600
' -.123 -> -0.123
' -Infinity -> -Infinity
' -1E-16 -> -1E-16
' 1.79769313486232E+308 is outside the range of a Single.
' -3.402823E+38 -> -3.402823E+38
' '' is not in a valid format.
注解
在 .NET Core 3.0 及更高版本中,无法表示的值舍 PositiveInfinity 入到 NegativeInfinity IEEE 754 规范或根据需要舍入。 在早期版本中(包括 .NET Framework)中,分析的值太大而无法表示导致失败。
该 s 参数可以包含当前区域性的 PositiveInfinitySymbol、 NegativeInfinitySymbol或 NaNSymbol 符号。 此字符串比较在 .NET Core 3.0 及更高版本中不区分大小写,但在早期版本(包括 .NET Framework)中区分大小写。 该 s 参数也可以是窗体的字符串:
[ws][sign][整型数字[,]]integral-digits[.[fractional-digits]][e[sign]exponential-digits][ws]
方括号 ([ 和 ]) 中的元素是可选的。 下表描述了每个元素。
| 元素 | 描述 |
|---|---|
| ws | 一系列空白字符。 |
| 签名 | 负号符号或正符号。 有效符号字符由NumberFormatInfo.NegativeSignNumberFormatInfo.PositiveSign当前区域性的属性确定。 只能使用前导符号。 |
| 整型数字 | 一系列数字,范围从 0 到 9,用于指定数字的整部分。 整数位的运行可以通过组分隔符进行分区。 例如,在某些区域性中,逗号 (,) 分隔成千个组。 如果字符串包含小数位数元素,则可以缺少整型数字元素。 |
| 、 | 区域性特定的千位分隔符符号。 |
| . | 区域性特定的小数点符号。 |
| fractional-digits | 一系列数字,范围从 0 到 9,指定数字的小数部分。 |
| E | “e”或“E”字符,指示该值以指数(科学)表示法表示。 |
| exponential-digits | 一系列数字,范围从 0 到 9,用于指定指数。 |
参数 s 使用 NumberStyles.Float 组合和 NumberStyles.AllowThousands 标志进行解释。 这意味着允许空格和数千个分隔符,但货币符号不是。 若要显式定义可以存在的 s元素(如货币符号、千位分隔符和空格),请使用 Parse(String, NumberStyles) 方法重载。
参数 s 通过使用为当前系统区域性初始化的对象中的 NumberFormatInfo 格式设置信息进行分析。 有关详细信息,请参阅 CurrentInfo。 若要使用特定区域性的格式信息分析字符串,请使用 Parse(String, IFormatProvider) 或 Parse(String, NumberStyles, IFormatProvider) 方法。
通常,如果通过调用Parse该方法传递ToString方法创建的字符串,则返回原始Single值。 但是,由于精度损失,值可能不相等。
如果s数据类型的范围Single不足,该方法会在 .NET Framework 上引发。OverflowException 在 .NET Core 3.0 及更高版本中,如果小于Single.NegativeInfinity且sSingle.MinValue大于Single.PositiveInfinity,则返回sSingle.MaxValue它。
如果在分析操作期间在参数中 s 遇到分隔符,并且适用的货币或数字小数和组分隔符相同,则分析操作假定分隔符是小数分隔符,而不是组分隔符。 有关分隔符的详细信息,请参阅CurrencyDecimalSeparator、NumberDecimalSeparator和CurrencyGroupSeparatorNumberGroupSeparator。
另请参阅
适用于
Parse(ReadOnlySpan<Byte>, IFormatProvider)
- Source:
- Single.cs
- Source:
- Single.cs
- Source:
- Single.cs
- Source:
- Single.cs
将 UTF-8 字符的范围分析为值。
public:
static float Parse(ReadOnlySpan<System::Byte> utf8Text, IFormatProvider ^ provider) = IUtf8SpanParsable<float>::Parse;
public static float Parse(ReadOnlySpan<byte> utf8Text, IFormatProvider? provider);
static member Parse : ReadOnlySpan<byte> * IFormatProvider -> single
Public Shared Function Parse (utf8Text As ReadOnlySpan(Of Byte), provider As IFormatProvider) As Single
参数
- utf8Text
- ReadOnlySpan<Byte>
要分析的 UTF-8 字符的范围。
- provider
- IFormatProvider
一个对象,提供有关区域性特定的格式设置信息 utf8Text。
返回
分析 utf8Text的结果。
实现
适用于
Parse(ReadOnlySpan<Char>, IFormatProvider)
- Source:
- Single.cs
- Source:
- Single.cs
- Source:
- Single.cs
- Source:
- Single.cs
- Source:
- Single.cs
将字符的范围分析为值。
public:
static float Parse(ReadOnlySpan<char> s, IFormatProvider ^ provider) = ISpanParsable<float>::Parse;
public static float Parse(ReadOnlySpan<char> s, IFormatProvider? provider);
static member Parse : ReadOnlySpan<char> * IFormatProvider -> single
Public Shared Function Parse (s As ReadOnlySpan(Of Char), provider As IFormatProvider) As Single
参数
- s
- ReadOnlySpan<Char>
要分析的字符范围。
- provider
- IFormatProvider
一个对象,提供有关区域性特定的格式设置信息 s。
返回
分析 s的结果。
实现
适用于
Parse(String, NumberStyles)
- Source:
- Single.cs
- Source:
- Single.cs
- Source:
- Single.cs
- Source:
- Single.cs
- Source:
- Single.cs
将指定样式中的数字的字符串表示形式转换为其等效的单精度浮点数。
public:
static float Parse(System::String ^ s, System::Globalization::NumberStyles style);
public static float Parse(string s, System.Globalization.NumberStyles style);
static member Parse : string * System.Globalization.NumberStyles -> single
Public Shared Function Parse (s As String, style As NumberStyles) As Single
参数
- s
- String
包含要转换的数字的字符串。
- style
- NumberStyles
枚举值的按位组合,指示可在其中 s存在的样式元素。 要指定的 Float 典型值与 AllowThousands.
返回
一个单精度浮点数,等效于在 中指定的 s数值或符号。
例外
s 是 null。
s 不是有效格式的数字。
仅限 .NET Framework: s 表示小于 Single.MinValue 或大于 Single.MaxValue 的数字。
示例
以下示例使用 Parse(String, NumberStyles) 该方法分析值的字符串表示形式 Single 。 该示例使用 en-US 区域性的格式设置信息。
using System;
using System.Globalization;
using System.Threading;
public class ParseString
{
public static void Main()
{
// Set current thread culture to en-US.
Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture("en-US");
string value;
NumberStyles styles;
// Parse a string in exponential notation with only the AllowExponent flag.
value = "-1.063E-02";
styles = NumberStyles.AllowExponent;
ShowNumericValue(value, styles);
// Parse a string in exponential notation
// with the AllowExponent and Number flags.
styles = NumberStyles.AllowExponent | NumberStyles.Number;
ShowNumericValue(value, styles);
// Parse a currency value with leading and trailing white space, and
// white space after the U.S. currency symbol.
value = " $ 6,164.3299 ";
styles = NumberStyles.Number | NumberStyles.AllowCurrencySymbol;
ShowNumericValue(value, styles);
// Parse negative value with thousands separator and decimal.
value = "(4,320.64)";
styles = NumberStyles.AllowParentheses | NumberStyles.AllowTrailingSign |
NumberStyles.Float;
ShowNumericValue(value, styles);
styles = NumberStyles.AllowParentheses | NumberStyles.AllowTrailingSign |
NumberStyles.Float | NumberStyles.AllowThousands;
ShowNumericValue(value, styles);
}
private static void ShowNumericValue(string value, NumberStyles styles)
{
Single number;
try
{
number = Single.Parse(value, styles);
Console.WriteLine("Converted '{0}' using {1} to {2}.",
value, styles.ToString(), number);
}
catch (FormatException)
{
Console.WriteLine("Unable to parse '{0}' with styles {1}.",
value, styles.ToString());
}
Console.WriteLine();
}
}
// The example displays the following output to the console:
// Unable to parse '-1.063E-02' with styles AllowExponent.
//
// Converted '-1.063E-02' using AllowTrailingSign, AllowThousands, Float to -0.01063.
//
// Converted ' $ 6,164.3299 ' using Number, AllowCurrencySymbol to 6164.3299.
//
// Unable to parse '(4,320.64)' with styles AllowTrailingSign, AllowParentheses, Float.
//
// Converted '(4,320.64)' using AllowTrailingSign, AllowParentheses, AllowThousands, Float to -4320.64.
open System
open System.Globalization
open System.Threading
let showNumericValue value (styles: NumberStyles) =
try
let number = Single.Parse(value, styles)
printfn $"Converted '{value}' using {styles} to {number}."
with :? FormatException ->
printfn $"Unable to parse '{value}' with styles {styles}."
printfn ""
[<EntryPoint>]
let main _ =
// Set current thread culture to en-US.
Thread.CurrentThread.CurrentCulture <- CultureInfo.CreateSpecificCulture "en-US"
// Parse a string in exponential notation with only the AllowExponent flag.
let value = "-1.063E-02"
let styles = NumberStyles.AllowExponent
showNumericValue value styles
// Parse a string in exponential notation
// with the AllowExponent and Number flags.
let styles = NumberStyles.AllowExponent ||| NumberStyles.Number
showNumericValue value styles
// Parse a currency value with leading and trailing white space, and
// white space after the U.S. currency symbol.
let value = " $ 6,164.3299 "
let styles = NumberStyles.Number ||| NumberStyles.AllowCurrencySymbol
showNumericValue value styles
// Parse negative value with thousands separator and decimal.
let value = "(4,320.64)"
let styles = NumberStyles.AllowParentheses ||| NumberStyles.AllowTrailingSign ||| NumberStyles.Float
showNumericValue value styles
let styles = NumberStyles.AllowParentheses ||| NumberStyles.AllowTrailingSign ||| NumberStyles.Float ||| NumberStyles.AllowThousands
showNumericValue value styles
0
// The example displays the following output to the console:
// Unable to parse '-1.063E-02' with styles AllowExponent.
//
// Converted '-1.063E-02' using AllowTrailingSign, AllowThousands, Float to -0.01063.
//
// Converted ' $ 6,164.3299 ' using Number, AllowCurrencySymbol to 6164.3299.
//
// Unable to parse '(4,320.64)' with styles AllowTrailingSign, AllowParentheses, Float.
//
// Converted '(4,320.64)' using AllowTrailingSign, AllowParentheses, AllowThousands, Float to -4320.64.
Imports System.Globalization
Imports System.Threading
Module ParseStrings
Public Sub Main()
' Set current thread culture to en-US.
Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture("en-US")
Dim value As String
Dim styles As NumberStyles
' Parse a string in exponential notation with only the AllowExponent flag.
value = "-1.063E-02"
styles = NumberStyles.AllowExponent
ShowNumericValue(value, styles)
' Parse a string in exponential notation
' with the AllowExponent and Number flags.
styles = NumberStyles.AllowExponent Or NumberStyles.Number
ShowNumericValue(value, styles)
' Parse a currency value with leading and trailing white space, and
' white space after the U.S. currency symbol.
value = " $ 6,164.3299 "
styles = NumberStyles.Number Or NumberStyles.AllowCurrencySymbol
ShowNumericValue(value, styles)
' Parse negative value with thousands separator and decimal.
value = "(4,320.64)"
styles = NumberStyles.AllowParentheses Or NumberStyles.AllowTrailingSign _
Or NumberStyles.Float
ShowNumericValue(value, styles)
styles = NumberStyles.AllowParentheses Or NumberStyles.AllowTrailingSign _
Or NumberStyles.Float Or NumberStyles.AllowThousands
ShowNumericValue(value, styles)
End Sub
Private Sub ShowNumericValue(value As String, styles As NumberStyles)
Dim number As Single
Try
number = Single.Parse(value, styles)
Console.WriteLine("Converted '{0}' using {1} to {2}.", _
value, styles.ToString(), number)
Catch e As FormatException
Console.WriteLine("Unable to parse '{0}' with styles {1}.", _
value, styles.ToString())
End Try
Console.WriteLine()
End Sub
End Module
' The example displays the following output to the console:
' Unable to parse '-1.063E-02' with styles AllowExponent.
'
' Converted '-1.063E-02' using AllowTrailingSign, AllowThousands, Float to -0.01063.
'
' Converted ' $ 6,164.3299 ' using Number, AllowCurrencySymbol to 6164.3299.
'
' Unable to parse '(4,320.64)' with styles AllowTrailingSign, AllowParentheses, Float.
'
' Converted '(4,320.64)' using AllowTrailingSign, AllowParentheses, AllowThousands, Float to -4320.64.
注解
在 .NET Core 3.0 及更高版本中,无法表示的值舍 PositiveInfinity 入到 NegativeInfinity IEEE 754 规范或根据需要舍入。 在早期版本中(包括 .NET Framework)中,分析的值太大而无法表示导致失败。
该 style 参数定义允许在参数中 s 成功执行分析操作的样式元素(如空格、千位分隔符和货币符号)。 它必须是枚举中的 NumberStyles 位标志的组合。 不支持以下 NumberStyles 成员:
该 s 参数可以包含当前区域性的 PositiveInfinitySymbol、 NegativeInfinitySymbol或 NaNSymbol 符号。 此字符串比较在 .NET Core 3.0 及更高版本中不区分大小写,但在早期版本(包括 .NET Framework)中区分大小写。 参数还可以采用以下格式,具体取决于其值styles:
[ws][$][sign][integral-digits[,]]integral-digits[.[fractional-digits]][E[sign]exponential-digits][ws]
方括号 ([ 和 ]) 中的元素是可选的。 下表描述了每个元素。
Ws 一系列空白字符。 如果s包含标志,则空白可以出现在标志的style开头,如果包含NumberStyles.AllowLeadingWhite标志,则它将显示在该标志的sstyleNumberStyles.AllowTrailingWhite末尾。
$ 特定于区域性的货币符号。 字符串中的位置由NumberFormatInfo.CurrencyNegativePatternNumberFormatInfo.CurrencyPositivePattern当前区域性的属性定义。 如果s包含标志,则当前区域性的货币符号可以出现在style其中NumberStyles.AllowCurrencySymbol。
标志 负号符号(-)或正符号(+)。 如果s包含标志,则符号可以出现在标志的style开头,如果包含NumberStyles.AllowLeadingSign标志,则它将显示在标志的sstyleNumberStyles.AllowTrailingSign末尾。 括号可用于 s 指示负值(如果 style 包含 NumberStyles.AllowParentheses 标志)。
整型数字 一系列数字,范围从 0 到 9,用于指定数字的整部分。 如果字符串包含小数位数元素,则可以缺少整型数字元素。
,特定于区域性的组分隔符。 如果包含s标志,则当前区域性的组分隔符可以出现在其中styleNumberStyles.AllowThousands
.
区域性特定的小数点符号。 如果包含标志,则当前区域性的小数点符号可以出现在sstyle其中NumberStyles.AllowDecimalPoint。
fractional-digits 一系列数字,范围从 0 到 9,指定数字的小数部分。 如果s包含style标志,则可以显示NumberStyles.AllowDecimalPoint小数位数。
E“e”或“E”字符,指示该值以指数(科学)表示法表示。 如果value包含标志,则参数style可以表示指数表示法中的NumberStyles.AllowExponent数字。
exponential-digits 一系列数字,范围从 0 到 9,用于指定指数。
注意
无论参数的值s如何,分析作都会忽略任何终止 NUL (U+0000) 字符style。
仅包含数字(对应于样式)的 NumberStyles.None 字符串在类型范围内 Single 时始终成功分析。 其余 System.Globalization.NumberStyles 成员控制输入字符串中可能存在但不需要存在的元素。 下表指示各个 NumberStyles 标志如何影响可能存在的 s元素。
| NumberStyles 值 | 除数字外允许 s 的元素 |
|---|---|
| None | 仅限 整型数字 元素。 |
| AllowDecimalPoint | 小数点(.)和 小数位数 元素。 |
| AllowExponent | 指示指数表示法的“e”或“E”字符。 此标志本身支持采用格式 数字E数字的值;需要其他标志才能成功分析包含正数或负号和小数点符号等元素的字符串。 |
| AllowLeadingWhite | 开头的 s 元素。 |
| AllowTrailingWhite | 末尾的 s 元素 |
| AllowLeadingSign | 开头的 s 元素。 |
| AllowTrailingSign | 结尾处的 s 元素。 |
| AllowParentheses | 括住数值的括号形式的 符号 元素。 |
| AllowThousands | 千位分隔符 (,) 元素。 |
| AllowCurrencySymbol | currency ($) 元素。 |
| Currency | 所有元素。 但是, s 不能表示十六进制数或指数表示法中的数字。 |
| Float | 开头或结尾处的 s 元素,符号位于开头s,小数点 (.) 符号。 该 s 参数还可以使用指数表示法。 |
| Number | 、wssign千位分隔符(、)和小数点(.)元素。 |
| Any | 所有元素。 但是, s 不能表示十六进制数。 |
一些示例 s 包括“100”、“-123,456,789”、“123.45e+6”、“+500”、“5e2”、“3.1416”、“600.”、“-.123”和“-Infinity”。
该 s 参数使用为当前系统区域性初始化的对象中的 NumberFormatInfo 格式设置信息进行分析。 若要指定其格式设置信息用于分析作的区域性,请调用 Parse(String, NumberStyles, IFormatProvider) 重载。
通常,如果通过调用Parse该方法传递ToString方法创建的字符串,则返回原始Single值。 但是,由于精度损失,值可能不相等。
如果s数据类型的范围Single不足,该方法会在 .NET Framework 上引发。OverflowException 在 .NET Core 3.0 及更高版本中,如果小于Single.NegativeInfinity且sSingle.MinValue大于Single.PositiveInfinity,则返回sSingle.MaxValue它。
如果在分析操作期间在参数中 s 遇到分隔符,并且适用的货币或数字小数和组分隔符相同,则分析操作假定分隔符是小数分隔符,而不是组分隔符。 有关分隔符的详细信息,请参阅CurrencyDecimalSeparator、NumberDecimalSeparator和CurrencyGroupSeparatorNumberGroupSeparator。
另请参阅
适用于
Parse(String, IFormatProvider)
- Source:
- Single.cs
- Source:
- Single.cs
- Source:
- Single.cs
- Source:
- Single.cs
- Source:
- Single.cs
将指定区域性特定格式的数字的字符串表示形式转换为其等效的单精度浮点数。
public:
static float Parse(System::String ^ s, IFormatProvider ^ provider);
public:
static float Parse(System::String ^ s, IFormatProvider ^ provider) = IParsable<float>::Parse;
public static float Parse(string s, IFormatProvider provider);
public static float Parse(string s, IFormatProvider? provider);
static member Parse : string * IFormatProvider -> single
Public Shared Function Parse (s As String, provider As IFormatProvider) As Single
参数
- s
- String
包含要转换的数字的字符串。
- provider
- IFormatProvider
一个对象,提供有关区域性特定的格式设置信息 s。
返回
一个单精度浮点数,等效于在 中指定的 s数值或符号。
实现
例外
s 是 null。
s 不表示有效格式的数字。
仅限 .NET Framework: s 表示小于 Single.MinValue 或大于 Single.MaxValue 的数字。
示例
以下示例是 Web 窗体的按钮单击事件处理程序。 它使用属性返回 HttpRequest.UserLanguages 的数组来确定用户的区域设置。 然后,它会实例化与 CultureInfo 该区域设置对应的对象。 NumberFormatInfo然后,将属于该CultureInfo对象的对象传递给Parse(String, IFormatProvider)方法,以将用户的输入转换为Single值。
protected void OkToSingle_Click(object sender, EventArgs e)
{
string locale;
float number;
CultureInfo culture;
// Return if string is empty
if (String.IsNullOrEmpty(this.inputNumber.Text))
return;
// Get locale of web request to determine possible format of number
if (Request.UserLanguages.Length == 0)
return;
locale = Request.UserLanguages[0];
if (String.IsNullOrEmpty(locale))
return;
// Instantiate CultureInfo object for the user's locale
culture = new CultureInfo(locale);
// Convert user input from a string to a number
try
{
number = Single.Parse(this.inputNumber.Text, culture.NumberFormat);
}
catch (FormatException)
{
return;
}
catch (Exception)
{
return;
}
// Output number to label on web form
this.outputNumber.Text = "Number is " + number.ToString();
}
Protected Sub OkToSingle_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles OkToSingle.Click
Dim locale As String
Dim culture As CultureInfo
Dim number As Single
' Return if string is empty
If String.IsNullOrEmpty(Me.inputNumber.Text) Then Exit Sub
' Get locale of web request to determine possible format of number
If Request.UserLanguages.Length = 0 Then Exit Sub
locale = Request.UserLanguages(0)
If String.IsNullOrEmpty(locale) Then Exit Sub
' Instantiate CultureInfo object for the user's locale
culture = New CultureInfo(locale)
' Convert user input from a string to a number
Try
number = Single.Parse(Me.inputNumber.Text, culture.NumberFormat)
Catch ex As FormatException
Exit Sub
Catch ex As OverflowException
Exit Sub
End Try
' Output number to label on web form
Me.outputNumber.Text = "Number is " & number.ToString()
End Sub
注解
在 .NET Core 3.0 及更高版本中,无法表示的值舍 PositiveInfinity 入到 NegativeInfinity IEEE 754 规范或根据需要舍入。 在早期版本中(包括 .NET Framework)中,分析的值太大而无法表示导致失败。
此重载通常用于将可通过多种方式格式化的文本转换为 Single 值。 例如,它可用于将用户输入的文本转换为 HTML 文本框,并将其转换为数值。
参数 s 使用 NumberStyles.Float 组合和 NumberStyles.AllowThousands 标志进行解释。 该s参数可以包含NumberFormatInfo.PositiveInfinitySymbol或NumberFormatInfo.NegativeInfinitySymbolNumberFormatInfo.NaNSymbol指定provider区域性的符号。 此字符串比较在 .NET Core 3.0 及更高版本中不区分大小写,但在早期版本(包括 .NET Framework)中区分大小写。 该 s 参数可以包含窗体的字符串:
[ws][sign]integral-digits[.[fractional-digits]][E[sign]exponential-digits][ws]
可选元素采用方括号([ 和 ])框架。 包含术语“digits”的元素由一系列介于 0 到 9 的数字字符组成。
| 元素 | 描述 |
|---|---|
| ws | 一系列空白字符。 |
| 签名 | 负号符号(-)或正符号(+)。 |
| 整型数字 | 一系列数字,范围从 0 到 9,用于指定数字的整部分。 整数位的运行可以通过组分隔符进行分区。 例如,在某些区域性中,逗号 (,) 分隔成千个组。 如果字符串包含小数位数元素,则可以缺少整型数字元素。 |
| . | 区域性特定的小数点符号。 |
| fractional-digits | 一系列数字,范围从 0 到 9,指定数字的小数部分。 |
| E | “e”或“E”字符,指示该值以指数(科学)表示法表示。 |
| exponential-digits | 一系列数字,范围从 0 到 9,用于指定指数。 |
有关数字格式的详细信息,请参阅 “格式设置类型” 主题。
该 provider 参数是一个 IFormatProvider 实现,其 GetFormat 方法返回提供 NumberFormatInfo 区域性特定格式信息的对象。
Parse(String, IFormatProvider)调用该方法时,它将调用provider参数GetFormat的方法,并传递一个Type表示该NumberFormatInfo类型的对象。 然后,该方法 GetFormat 返回 NumberFormatInfo 提供有关参数格式 s 的信息的对象。 可通过三种方法使用 provider 参数向分析作提供自定义格式信息:
可以传递表示 CultureInfo 提供格式信息的区域性的对象。 其 GetFormat 方法返回 NumberFormatInfo 提供该区域性的数字格式信息的对象。
可以传递提供数字格式信息的实际 NumberFormatInfo 对象。 (它的实现 GetFormat 只是返回自己。
可以传递实现的 IFormatProvider自定义对象。 其 GetFormat 方法实例化并返回 NumberFormatInfo 提供格式信息的对象。
如果provider无法获取,nullNumberFormatInfo则使用当前系统区域性的格式设置信息。
如果s数据类型的范围Single不足,该方法会在 .NET Framework 上引发。OverflowException 在 .NET Core 3.0 及更高版本中,如果小于Single.NegativeInfinity且sSingle.MinValue大于Single.PositiveInfinity,则返回sSingle.MaxValue它。
如果在分析操作期间在参数中 s 遇到分隔符,并且适用的货币或数字小数和组分隔符相同,则分析操作假定分隔符是小数分隔符,而不是组分隔符。 有关分隔符的详细信息,请参阅CurrencyDecimalSeparator、NumberDecimalSeparator和CurrencyGroupSeparatorNumberGroupSeparator。
一些示例 s 包括“100”、“-123,456,789”、“123.45e+6”、“+500”、“5e2”、“3.1416”、“600.”、“-.123”和“-Infinity”。
另请参阅
适用于
Parse(ReadOnlySpan<Byte>, NumberStyles, IFormatProvider)
- Source:
- Single.cs
- Source:
- Single.cs
- Source:
- Single.cs
- Source:
- Single.cs
将 UTF-8 字符的范围分析为值。
public static float Parse(ReadOnlySpan<byte> utf8Text, System.Globalization.NumberStyles style = System.Globalization.NumberStyles.AllowThousands | System.Globalization.NumberStyles.Float, IFormatProvider? provider = default);
static member Parse : ReadOnlySpan<byte> * System.Globalization.NumberStyles * IFormatProvider -> single
Public Shared Function Parse (utf8Text As ReadOnlySpan(Of Byte), Optional style As NumberStyles = System.Globalization.NumberStyles.AllowThousands | System.Globalization.NumberStyles.Float, Optional provider As IFormatProvider = Nothing) As Single
参数
- utf8Text
- ReadOnlySpan<Byte>
要分析的 UTF-8 字符的范围。
- style
- NumberStyles
可以存在的 utf8Text数字样式的按位组合。
- provider
- IFormatProvider
一个对象,提供有关区域性特定的格式设置信息 utf8Text。
返回
分析 utf8Text的结果。
实现
适用于
Parse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider)
- Source:
- Single.cs
- Source:
- Single.cs
- Source:
- Single.cs
- Source:
- Single.cs
- Source:
- Single.cs
将包含指定样式和区域性特定格式的数字的字符串表示形式的字符范围转换为其等效的单精度浮点数。
public static float Parse(ReadOnlySpan<char> s, System.Globalization.NumberStyles style = System.Globalization.NumberStyles.AllowThousands | System.Globalization.NumberStyles.Float, IFormatProvider? provider = default);
public static float Parse(ReadOnlySpan<char> s, System.Globalization.NumberStyles style = System.Globalization.NumberStyles.AllowThousands | System.Globalization.NumberStyles.Float, IFormatProvider provider = default);
static member Parse : ReadOnlySpan<char> * System.Globalization.NumberStyles * IFormatProvider -> single
Public Shared Function Parse (s As ReadOnlySpan(Of Char), Optional style As NumberStyles = System.Globalization.NumberStyles.AllowThousands | System.Globalization.NumberStyles.Float, Optional provider As IFormatProvider = Nothing) As Single
参数
- s
- ReadOnlySpan<Char>
包含要转换的数字的字符范围。
- style
- NumberStyles
枚举值的按位组合,指示可以存在的 s样式元素。 要指定的 Float 典型值与 AllowThousands.
- provider
- IFormatProvider
一个对象,提供有关区域性特定的格式设置信息 s。
返回
一个单精度浮点数,等效于在 中指定的 s数值或符号。
实现
例外
s 不表示数值。
注解
在 .NET Core 3.0 及更高版本中,无法表示的值舍 PositiveInfinity 入到 NegativeInfinity IEEE 754 规范或根据需要舍入。 在早期版本中(包括 .NET Framework)中,分析的值太大而无法表示导致失败。
如果s超出数据类型的范围Single,该方法将Single.NegativeInfinitys返回小于Single.MinValue且Single.PositiveInfinitys大于 Single.MaxValue。
适用于
Parse(String, NumberStyles, IFormatProvider)
- Source:
- Single.cs
- Source:
- Single.cs
- Source:
- Single.cs
- Source:
- Single.cs
- Source:
- Single.cs
将指定样式和区域性特定格式的数字的字符串表示形式转换为其等效的单精度浮点数。
public:
static float Parse(System::String ^ s, System::Globalization::NumberStyles style, IFormatProvider ^ provider);
public:
static float Parse(System::String ^ s, System::Globalization::NumberStyles style, IFormatProvider ^ provider) = System::Numerics::INumberBase<float>::Parse;
public static float Parse(string s, System.Globalization.NumberStyles style, IFormatProvider provider);
public static float Parse(string s, System.Globalization.NumberStyles style, IFormatProvider? provider);
static member Parse : string * System.Globalization.NumberStyles * IFormatProvider -> single
Public Shared Function Parse (s As String, style As NumberStyles, provider As IFormatProvider) As Single
参数
- s
- String
包含要转换的数字的字符串。
- style
- NumberStyles
枚举值的按位组合,指示可在其中 s存在的样式元素。 要指定的 Float 典型值与 AllowThousands.
- provider
- IFormatProvider
一个对象,提供有关区域性特定的格式设置信息 s。
返回
一个单精度浮点数,等效于在 中指定的 s数值或符号。
实现
例外
s 是 null。
s 不表示数值。
仅限 .NET Framework: s 表示小于 Single.MinValue 或大于 Single.MaxValue 的数字。
示例
下面的代码示例使用 Parse(String, NumberStyles, IFormatProvider) 该方法分析值的字符串表示形式 Single 。 数组中的每个字符串都使用 en-US、nl-NL和自定义区域性的格式约定进行分析。 自定义区域性将其组分隔符定义为下划线(“_”),其组大小定义为 2。
using System;
using System.Globalization;
public class Example
{
public static void Main()
{
// Define an array of string values.
string[] values = { " 987.654E-2", " 987,654E-2", "(98765,43210)",
"9,876,543.210", "9.876.543,210", "98_76_54_32,19" };
// Create a custom culture based on the invariant culture.
CultureInfo ci = new CultureInfo("");
ci.NumberFormat.NumberGroupSizes = new int[] { 2 };
ci.NumberFormat.NumberGroupSeparator = "_";
// Define an array of format providers.
CultureInfo[] providers = { new CultureInfo("en-US"),
new CultureInfo("nl-NL"), ci };
// Define an array of styles.
NumberStyles[] styles = { NumberStyles.Currency, NumberStyles.Float };
// Iterate the array of format providers.
foreach (CultureInfo provider in providers)
{
Console.WriteLine("Parsing using the {0} culture:",
provider.Name == String.Empty ? "Invariant" : provider.Name);
// Parse each element in the array of string values.
foreach (string value in values)
{
foreach (NumberStyles style in styles)
{
try {
float number = Single.Parse(value, style, provider);
Console.WriteLine(" {0} ({1}) -> {2}",
value, style, number);
}
catch (FormatException) {
Console.WriteLine(" '{0}' is invalid using {1}.", value, style);
}
catch (OverflowException) {
Console.WriteLine(" '{0}' is out of the range of a Single.", value);
}
}
}
Console.WriteLine();
}
}
}
// The example displays the following output:
// Parsing using the en-US culture:
// ' 987.654E-2' is invalid using Currency.
// 987.654E-2 (Float) -> 9.87654
// ' 987,654E-2' is invalid using Currency.
// ' 987,654E-2' is invalid using Float.
// (98765,43210) (Currency) -> -9.876543E+09
// '(98765,43210)' is invalid using Float.
// 9,876,543.210 (Currency) -> 9876543
// '9,876,543.210' is invalid using Float.
// '9.876.543,210' is invalid using Currency.
// '9.876.543,210' is invalid using Float.
// '98_76_54_32,19' is invalid using Currency.
// '98_76_54_32,19' is invalid using Float.
//
// Parsing using the nl-NL culture:
// ' 987.654E-2' is invalid using Currency.
// ' 987.654E-2' is invalid using Float.
// ' 987,654E-2' is invalid using Currency.
// 987,654E-2 (Float) -> 9.87654
// (98765,43210) (Currency) -> -98765.43
// '(98765,43210)' is invalid using Float.
// '9,876,543.210' is invalid using Currency.
// '9,876,543.210' is invalid using Float.
// 9.876.543,210 (Currency) -> 9876543
// '9.876.543,210' is invalid using Float.
// '98_76_54_32,19' is invalid using Currency.
// '98_76_54_32,19' is invalid using Float.
//
// Parsing using the Invariant culture:
// ' 987.654E-2' is invalid using Currency.
// 987.654E-2 (Float) -> 9.87654
// ' 987,654E-2' is invalid using Currency.
// ' 987,654E-2' is invalid using Float.
// (98765,43210) (Currency) -> -9.876543E+09
// '(98765,43210)' is invalid using Float.
// 9,876,543.210 (Currency) -> 9876543
// '9,876,543.210' is invalid using Float.
// '9.876.543,210' is invalid using Currency.
// '9.876.543,210' is invalid using Float.
// 98_76_54_32,19 (Currency) -> 9.876543E+09
// '98_76_54_32,19' is invalid using Float.
open System
open System.Globalization
// Define a list of string values.
let values =
[ " 987.654E-2"; " 987,654E-2"; "(98765,43210)"
"9,876,543.210"; "9.876.543,210"; "98_76_54_32,19" ]
// Create a custom culture based on the invariant culture.
let ci = CultureInfo ""
ci.NumberFormat.NumberGroupSizes <- [| 2 |]
ci.NumberFormat.NumberGroupSeparator <- "_"
// Define a list of format providers.
let providers =
[ CultureInfo "en-US"
CultureInfo "nl-NL"
ci ]
// Define a list of styles.
let styles = [ NumberStyles.Currency; NumberStyles.Float ]
// Iterate the list of format providers.
for provider in providers do
printfn $"""Parsing using the {if provider.Name = String.Empty then "Invariant" else provider.Name} culture:"""
// Parse each element in the array of string values.
for value in values do
for style in styles do
try
let number = Single.Parse(value, style, provider)
printfn $" {value} ({style}) -> {number}"
with
| :? FormatException ->
printfn $" '{value}' is invalid using {style}."
| :? OverflowException ->
printfn $" '{value}' is out of the range of a Single."
printfn ""
// The example displays the following output:
// Parsing using the en-US culture:
// ' 987.654E-2' is invalid using Currency.
// 987.654E-2 (Float) -> 9.87654
// ' 987,654E-2' is invalid using Currency.
// ' 987,654E-2' is invalid using Float.
// (98765,43210) (Currency) -> -9.876543E+09
// '(98765,43210)' is invalid using Float.
// 9,876,543.210 (Currency) -> 9876543
// '9,876,543.210' is invalid using Float.
// '9.876.543,210' is invalid using Currency.
// '9.876.543,210' is invalid using Float.
// '98_76_54_32,19' is invalid using Currency.
// '98_76_54_32,19' is invalid using Float.
//
// Parsing using the nl-NL culture:
// ' 987.654E-2' is invalid using Currency.
// ' 987.654E-2' is invalid using Float.
// ' 987,654E-2' is invalid using Currency.
// 987,654E-2 (Float) -> 9.87654
// (98765,43210) (Currency) -> -98765.43
// '(98765,43210)' is invalid using Float.
// '9,876,543.210' is invalid using Currency.
// '9,876,543.210' is invalid using Float.
// 9.876.543,210 (Currency) -> 9876543
// '9.876.543,210' is invalid using Float.
// '98_76_54_32,19' is invalid using Currency.
// '98_76_54_32,19' is invalid using Float.
//
// Parsing using the Invariant culture:
// ' 987.654E-2' is invalid using Currency.
// 987.654E-2 (Float) -> 9.87654
// ' 987,654E-2' is invalid using Currency.
// ' 987,654E-2' is invalid using Float.
// (98765,43210) (Currency) -> -9.876543E+09
// '(98765,43210)' is invalid using Float.
// 9,876,543.210 (Currency) -> 9876543
// '9,876,543.210' is invalid using Float.
// '9.876.543,210' is invalid using Currency.
// '9.876.543,210' is invalid using Float.
// 98_76_54_32,19 (Currency) -> 9.876543E+09
// '98_76_54_32,19' is invalid using Float.
Imports System.Globalization
Module Example
Public Sub Main()
' Define an array of string values.
Dim values() As String = { " 987.654E-2", " 987,654E-2", _
"(98765,43210)", "9,876,543.210", _
"9.876.543,210", "98_76_54_32,19" }
' Create a custom culture based on the invariant culture.
Dim ci As New CultureInfo("")
ci.NumberFormat.NumberGroupSizes = New Integer() { 2 }
ci.NumberFormat.NumberGroupSeparator = "_"
' Define an array of format providers.
Dim providers() As CultureInfo = { New CultureInfo("en-US"), _
New CultureInfo("nl-NL"), ci }
' Define an array of styles.
Dim styles() As NumberStyles = { NumberStyles.Currency, NumberStyles.Float }
' Iterate the array of format providers.
For Each provider As CultureInfo In providers
Console.WriteLine("Parsing using the {0} culture:", _
If(provider.Name = String.Empty, "Invariant", provider.Name))
' Parse each element in the array of string values.
For Each value As String In values
For Each style As NumberStyles In styles
Try
Dim number As Single = Single.Parse(value, style, provider)
Console.WriteLine(" {0} ({1}) -> {2}", _
value, style, number)
Catch e As FormatException
Console.WriteLine(" '{0}' is invalid using {1}.", value, style)
Catch e As OverflowException
Console.WriteLine(" '{0}' is out of the range of a Single.", value)
End Try
Next
Next
Console.WriteLine()
Next
End Sub
End Module
' The example displays the following output:
' Parsing using the en-US culture:
' ' 987.654E-2' is invalid using Currency.
' 987.654E-2 (Float) -> 9.87654
' ' 987,654E-2' is invalid using Currency.
' ' 987,654E-2' is invalid using Float.
' (98765,43210) (Currency) -> -9.876543E+09
' '(98765,43210)' is invalid using Float.
' 9,876,543.210 (Currency) -> 9876543
' '9,876,543.210' is invalid using Float.
' '9.876.543,210' is invalid using Currency.
' '9.876.543,210' is invalid using Float.
' '98_76_54_32,19' is invalid using Currency.
' '98_76_54_32,19' is invalid using Float.
'
' Parsing using the nl-NL culture:
' ' 987.654E-2' is invalid using Currency.
' ' 987.654E-2' is invalid using Float.
' ' 987,654E-2' is invalid using Currency.
' 987,654E-2 (Float) -> 9.87654
' (98765,43210) (Currency) -> -98765.43
' '(98765,43210)' is invalid using Float.
' '9,876,543.210' is invalid using Currency.
' '9,876,543.210' is invalid using Float.
' 9.876.543,210 (Currency) -> 9876543
' '9.876.543,210' is invalid using Float.
' '98_76_54_32,19' is invalid using Currency.
' '98_76_54_32,19' is invalid using Float.
'
' Parsing using the Invariant culture:
' ' 987.654E-2' is invalid using Currency.
' 987.654E-2 (Float) -> 9.87654
' ' 987,654E-2' is invalid using Currency.
' ' 987,654E-2' is invalid using Float.
' (98765,43210) (Currency) -> -9.876543E+09
' '(98765,43210)' is invalid using Float.
' 9,876,543.210 (Currency) -> 9876543
' '9,876,543.210' is invalid using Float.
' '9.876.543,210' is invalid using Currency.
' '9.876.543,210' is invalid using Float.
' 98_76_54_32,19 (Currency) -> 9.876543E+09
' '98_76_54_32,19' is invalid using Float.
注解
在 .NET Core 3.0 及更高版本中,无法表示的值舍 PositiveInfinity 入到 NegativeInfinity IEEE 754 规范或根据需要舍入。 在早期版本中(包括 .NET Framework)中,分析的值太大而无法表示导致失败。
该 style 参数定义允许在参数中 s 成功执行分析操作的样式元素(如空格、千位分隔符和货币符号)。 它必须是枚举中的 NumberStyles 位标志的组合。 不支持以下 NumberStyles 成员:
该s参数可以包含NumberFormatInfo.PositiveInfinitySymbol或NumberFormatInfo.NegativeInfinitySymbolNumberFormatInfo.NaNSymbol指定provider区域性的符号。 此字符串比较在 .NET Core 3.0 及更高版本中不区分大小写,但在早期版本(包括 .NET Framework)中区分大小写。 参数还可以采用以下格式,具体取决于其值styles:
[ws][] [$sign][integral-digits,]integral-digits[.[fractional-digits]][E[sign]exponential-digits][ws]
方括号 ([ 和 ]) 中框架的元素是可选的。 下表描述了每个元素。
| 元素 | 描述 |
|---|---|
| ws | 一系列空白字符。 如果s包含标志,则空白可以出现在标志的style开头,如果包含NumberStyles.AllowLeadingWhite标志,则它将显示在该标志的sstyleNumberStyles.AllowTrailingWhite末尾。 |
| $ | 区域性特定的货币符号。 字符串中的位置由NumberFormatInfo.CurrencyNegativePatternNumberFormatInfo.CurrencyPositivePattern当前区域性的属性定义。 如果s包含标志,则当前区域性的货币符号可以出现在style其中NumberStyles.AllowCurrencySymbol。 |
| 签名 | 负号符号(-)或正符号(+)。 如果s包含标志,则符号可以出现在标志的style开头,如果包含NumberStyles.AllowLeadingSign标志,则它将显示在标志的sstyleNumberStyles.AllowTrailingSign末尾。 括号可用于 s 指示负值(如果 style 包含 NumberStyles.AllowParentheses 标志)。 |
| 整型数字 | 一系列数字,范围从 0 到 9,用于指定数字的整部分。 如果字符串包含小数位数元素,则可以缺少整型数字元素。 |
| , | 区域性特定的组分隔符。 如果包含s标志,则当前区域性的组分隔符可以出现在其中styleNumberStyles.AllowThousands |
| . | 区域性特定的小数点符号。 如果包含标志,则当前区域性的小数点符号可以出现在sstyle其中NumberStyles.AllowDecimalPoint。 |
| fractional-digits | 一系列数字,范围从 0 到 9,指定数字的小数部分。 如果s包含style标志,则可以显示NumberStyles.AllowDecimalPoint小数位数。 |
| E | “e”或“E”字符,指示该值以指数(科学)表示法表示。 如果s包含标志,则参数style可以表示指数表示法中的NumberStyles.AllowExponent数字。 |
| exponential-digits | 一系列数字,范围从 0 到 9,用于指定指数。 |
注意
无论参数的值s如何,分析作都会忽略任何终止 NUL (U+0000) 字符style。
仅包含数字(对应于样式)的 NumberStyles.None 字符串在类型范围内 Single 时始终成功分析。 其余 System.Globalization.NumberStyles 成员控制输入字符串中可能存在但不需要存在的元素。 下表指示各个 NumberStyles 标志如何影响可能存在的 s元素。
| NumberStyles 值 | 除数字外允许 s 的元素 |
|---|---|
| None | 仅限 整型数字 元素。 |
| AllowDecimalPoint | 小数点(.)和 小数位数 元素。 |
| AllowExponent | 指示指数表示法的“e”或“E”字符。 此标志本身支持采用格式 数字E数字的值;需要其他标志才能成功分析包含正数或负号和小数点符号等元素的字符串。 |
| AllowLeadingWhite | 开头的 s 元素。 |
| AllowTrailingWhite | 末尾的 s 元素 |
| AllowLeadingSign | 开头的 s 元素。 |
| AllowTrailingSign | 结尾处的 s 元素。 |
| AllowParentheses | 括住数值的括号形式的 符号 元素。 |
| AllowThousands | 千位分隔符 (,) 元素。 |
| AllowCurrencySymbol | currency ($) 元素。 |
| Currency | 所有元素。 但是, s 不能表示十六进制数或指数表示法中的数字。 |
| Float | 开头或结尾处的 s 元素,符号位于开头s,小数点 (.) 符号。 该 s 参数还可以使用指数表示法。 |
| Number | 、wssign千位分隔符(、)和小数点(.)元素。 |
| Any | 所有元素。 但是, s 不能表示十六进制数。 |
参数 provider 是实现 IFormatProvider 。 其 GetFormat 方法返回一个 NumberFormatInfo 对象,该对象提供有关其格式的 value区域性特定信息。 通常, provider 可以是下列任一项:
一个 CultureInfo 对象,表示提供数字格式信息的区域性。 其 GetFormat 方法返回 NumberFormatInfo 提供数字格式信息的对象。
提供 NumberFormatInfo 格式设置信息的对象。 (它的实现 GetFormat 只是返回自己。
实现 IFormatProvider 和使用该方法实例化和 GetFormat 返回 NumberFormatInfo 提供格式信息的对象的自定义对象。
provider如果是null,NumberFormatInfo则使用当前区域性的对象。
如果s数据类型的范围Single不足,该方法会在 .NET Framework 上引发。OverflowException 在 .NET Core 3.0 及更高版本中,如果小于Single.NegativeInfinity且sSingle.MinValue大于Single.PositiveInfinity,则返回sSingle.MaxValue它。
如果在分析操作期间在参数中 s 遇到分隔符,并且适用的货币或数字小数和组分隔符相同,则分析操作假定分隔符是小数分隔符,而不是组分隔符。 有关分隔符的详细信息,请参阅CurrencyDecimalSeparator、NumberDecimalSeparator和CurrencyGroupSeparatorNumberGroupSeparator。