Int32.TryParse Yöntem
Tanım
Bir sayının dize gösterimini 32 bitlik işaretli tamsayı eşdeğerine dönüştürür.Converts the string representation of a number to its 32-bit signed integer equivalent. Dönüş değeri, işlemin başarılı olup olmadığını gösterir.A return value indicates whether the operation succeeded.
Aşırı Yüklemeler
| TryParse(String, Int32) |
Bir sayının dize gösterimini 32 bitlik işaretli tamsayı eşdeğerine dönüştürür.Converts the string representation of a number to its 32-bit signed integer equivalent. Dönüş değeri dönüştürmenin başarılı olup olmadığını gösterir.A return value indicates whether the conversion succeeded. |
| TryParse(ReadOnlySpan<Char>, Int32) |
Belirtilen bir stilin ve kültüre özgü biçimdeki bir sayının span gösterimini 32 bitlik işaretli tamsayı eşdeğerine dönüştürür.Converts the span representation of a number in a specified style and culture-specific format to its 32-bit signed integer equivalent. Dönüş değeri dönüştürmenin başarılı olup olmadığını gösterir.A return value indicates whether the conversion succeeded. |
| TryParse(String, NumberStyles, IFormatProvider, Int32) |
Belirtilen bir stil ve kültüre özgü biçimdeki bir sayının dize gösterimini 32 bitlik işaretli tamsayı eşdeğerine dönüştürür.Converts the string representation of a number in a specified style and culture-specific format to its 32-bit signed integer equivalent. Dönüş değeri dönüştürmenin başarılı olup olmadığını gösterir.A return value indicates whether the conversion succeeded. |
| TryParse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider, Int32) |
Belirtilen bir stilin ve kültüre özgü biçimdeki bir sayının span gösterimini 32 bitlik işaretli tamsayı eşdeğerine dönüştürür.Converts the span representation of a number in a specified style and culture-specific format to its 32-bit signed integer equivalent. Dönüş değeri dönüştürmenin başarılı olup olmadığını gösterir.A return value indicates whether the conversion succeeded. |
TryParse(String, Int32)
Bir sayının dize gösterimini 32 bitlik işaretli tamsayı eşdeğerine dönüştürür.Converts the string representation of a number to its 32-bit signed integer equivalent. Dönüş değeri dönüştürmenin başarılı olup olmadığını gösterir.A return value indicates whether the conversion succeeded.
public:
static bool TryParse(System::String ^ s, [Runtime::InteropServices::Out] int % result);
public static bool TryParse (string s, out int result);
public static bool TryParse (string? s, out int? result);
static member TryParse : string * int -> bool
Public Shared Function TryParse (s As String, ByRef result As Integer) As Boolean
Parametreler
- s
- String
Dönüştürülecek sayıyı içeren bir dize.A string containing a number to convert.
- result
- Int32
Bu yöntem döndüğünde, s dönüştürme başarılı olursa veya dönüştürme başarısız olursa sıfır değeri, içinde bulunan sayının 32 bitlik işaretli tamsayı değer eşdeğerini içerir.When this method returns, contains the 32-bit signed integer value equivalent of the number contained in s, if the conversion succeeded, or zero if the conversion failed. sParametresi null ya da Empty doğru biçimde değilse, dönüştürme başarısız olur ya da değerinden küçük veya bundan büyük bir sayıyı temsil eder MinValue MaxValue .The conversion fails if the s parameter is null or Empty, is not of the correct format, or represents a number less than MinValue or greater than MaxValue. Bu parametre başlatılmamış olarak geçildi; Başlangıçta sağlanan değerin result üzerine yazılır.This parameter is passed uninitialized; any value originally supplied in result will be overwritten.
Döndürülenler
truesbaşarıyla dönüştürülürse; Aksi takdirde, false .true if s was converted successfully; otherwise, false.
Örnekler
Aşağıdaki örnek, Int32.TryParse(String, Int32) bir dizi farklı dize değerleriyle yöntemini çağırır.The following example calls the Int32.TryParse(String, Int32) method with a number of different string values.
using namespace System;
void TryToParse(String^ value)
{
Int32 number;
bool result = Int32::TryParse(value, number);
if (result) {
Console::WriteLine("Converted '{0}' to {1}.", value, number);
}
else {
if (value == nullptr) value = "";
Console::WriteLine("Attempted conversion of '{0}' failed.", value);
}
}
void main()
{
TryToParse(nullptr);
TryToParse("160519");
TryToParse("9432.0");
TryToParse("16,667");
TryToParse(" -322 ");
TryToParse("+4302");
TryToParse("(100);");
TryToParse("01FA");
}
// The example displays the following output:
// Attempted conversion of '' failed.
// Converted '160519' to 160519.
// Attempted conversion of '9432.0' failed.
// Attempted conversion of '16,667' failed.
// Converted ' -322 ' to -322.
// Converted '+4302' to 4302.
// Attempted conversion of '(100);' failed.
// Attempted conversion of '01FA' failed.
using System;
public class Example
{
public static void Main()
{
String[] values = { null, "160519", "9432.0", "16,667",
" -322 ", "+4302", "(100);", "01FA" };
foreach (var value in values)
{
int number;
bool success = Int32.TryParse(value, out number);
if (success)
{
Console.WriteLine("Converted '{0}' to {1}.", value, number);
}
else
{
Console.WriteLine("Attempted conversion of '{0}' failed.",
value ?? "<null>");
}
}
}
}
// The example displays the following output:
// Attempted conversion of '<null>' failed.
// Converted '160519' to 160519.
// Attempted conversion of '9432.0' failed.
// Attempted conversion of '16,667' failed.
// Converted ' -322 ' to -322.
// Converted '+4302' to 4302.
// Attempted conversion of '(100);' failed.
// Attempted conversion of '01FA' failed.
Module Example
Public Sub Main()
Dim values() As String = { Nothing, "160519", "9432.0", "16,667",
" -322 ", "+4302", "(100);",
"01FA" }
For Each value In values
Dim number As Integer
Dim success As Boolean = Int32.TryParse(value, number)
If success Then
Console.WriteLine("Converted '{0}' to {1}.", value, number)
Else
Console.WriteLine("Attempted conversion of '{0}' failed.",
If(value ,"<null>"))
End If
Next
End Sub
End Module
' The example displays the following output to the console:
' Attempted conversion of '<null>' failed.
' Converted '160519' to 160519.
' Attempted conversion of '9432.0' failed.
' Attempted conversion of '16,667' failed.
' Converted ' -322 ' to -322.
' Converted '+4302' to 4302.
' Attempted conversion of '(100)' failed.
' Attempted conversion of '01FA' failed.
TryParse(String, Int32)Bu örnekte, yöntemin dönüştüremediğinden bazı dizeler şunlardır:Some of the strings that the TryParse(String, Int32) method is unable to convert in this example are:
"9432,0"."9432.0". Dize ondalık ayırıcı içeremediğinden dönüştürme başarısız olur; yalnızca tam sayı rakamları içermelidir.The conversion fails because the string cannot contain a decimal separator; it must contain integral digits only.
"16.667"."16,667". Dize, Grup ayırıcıları içeremediği için dönüştürme başarısız olur; yalnızca tam sayı rakamları içermelidir.The conversion fails because the string cannot contain group separators; it must contain integral digits only.
"(100)"."(100)". Dize, geçerli kültürün ve özelliklerin tanımından farklı bir eksi işareti içeremediği için dönüştürme başarısız olur NumberFormatInfo.NegativeSign NumberFormatInfo.NumberNegativePattern .The conversion fails because the string cannot contain a negative sign other than the one defined by the current culture's NumberFormatInfo.NegativeSign and NumberFormatInfo.NumberNegativePattern properties.
"01FA"."01FA". Dize onaltılık basamaklar içeremediği için dönüştürme başarısız olur; yalnızca ondalık basamakları içermelidir.The conversion fails because the string cannot contain hexadecimal digits; it must contain decimal digits only.
Açıklamalar
Yöntemi yöntemi TryParse gibidir Parse , ancak TryParse dönüştürme başarısız olursa Yöntem bir özel durum oluşturmaz.The TryParse method is like the Parse method, except the TryParse method does not throw an exception if the conversion fails. Geçersiz bir olayda bir için test etmek üzere özel durum işlemenin kullanılması gereksinimini ortadan kaldırır FormatException s ve başarıyla ayrıştırılamaz.It eliminates the need to use exception handling to test for a FormatException in the event that s is invalid and cannot be successfully parsed.
sParametresi bir sayı biçimi içerir:The s parameter contains a number of the form:
[ws][sign]digits[ws][ws][sign]digits[ws]
Köşeli ayraçlar ([ve]) içindeki öğeler isteğe bağlıdır.Items in square brackets ([ and ]) are optional. Aşağıdaki tablo her öğeyi açıklar.The following table describes each element.
| ÖğeElement | AçıklamaDescription |
|---|---|
| wsws | İsteğe bağlı beyaz boşluk.Optional white space. |
| signsign | İsteğe bağlı bir işaret.An optional sign. |
| rakamlardigits | 0 İle 9 arasında değişen bir basamak dizisi.A sequence of digits ranging from 0 to 9. |
sParametresi, stili kullanılarak yorumlanır NumberStyles.Integer .The s parameter is interpreted using the NumberStyles.Integer style. Ondalık basamakların yanı sıra önde gelen işaretiyle birlikte yalnızca baştaki ve sondaki boşluklara izin verilir.In addition to the decimal digits, only leading and trailing spaces together with a leading sign are allowed. Stil öğelerini içinde bulunabilecek kültüre özgü biçimlendirme bilgileriyle birlikte açıkça tanımlamak için s Int32.TryParse(String, NumberStyles, IFormatProvider, Int32) yöntemini kullanın.To explicitly define the style elements together with the culture-specific formatting information that can be present in s, use the Int32.TryParse(String, NumberStyles, IFormatProvider, Int32) method.
sParametresi, NumberFormatInfo geçerli sistem kültürü için başlatılmış bir nesnedeki biçimlendirme bilgileri kullanılarak ayrıştırılır.The s parameter is parsed using the formatting information in a NumberFormatInfo object initialized for the current system culture. Daha fazla bilgi için bkz. CurrentInfo.For more information, see CurrentInfo.
Yönteminin bu aşırı yüklemesi, TryParse parametresindeki tüm rakamları s Ondalık basamaklar olarak yorumlar.This overload of the TryParse method interprets all digits in the s parameter as decimal digits. Onaltılık bir sayının dize gösterimini ayrıştırmak için Int32.TryParse(String, NumberStyles, IFormatProvider, Int32) aşırı yüklemeyi çağırın.To parse the string representation of a hexadecimal number, call the Int32.TryParse(String, NumberStyles, IFormatProvider, Int32) overload.
Ayrıca bkz.
- Parse(String)
- ToString()
- .NET 'te sayısal dizeleri ayrıştırmaParsing Numeric Strings in .NET
- Örnek: .NET Core WinForms biçimlendirme yardımcı programı (C#)Sample: .NET Core WinForms Formatting Utility (C#)
- Örnek: .NET Core WinForms biçimlendirme yardımcı programı (Visual Basic)Sample: .NET Core WinForms Formatting Utility (Visual Basic)
Şunlara uygulanır
TryParse(ReadOnlySpan<Char>, Int32)
Belirtilen bir stilin ve kültüre özgü biçimdeki bir sayının span gösterimini 32 bitlik işaretli tamsayı eşdeğerine dönüştürür.Converts the span representation of a number in a specified style and culture-specific format to its 32-bit signed integer equivalent. Dönüş değeri dönüştürmenin başarılı olup olmadığını gösterir.A return value indicates whether the conversion succeeded.
public:
static bool TryParse(ReadOnlySpan<char> s, [Runtime::InteropServices::Out] int % result);
public static bool TryParse (ReadOnlySpan<char> s, out int result);
static member TryParse : ReadOnlySpan<char> * int -> bool
Public Shared Function TryParse (s As ReadOnlySpan(Of Char), ByRef result As Integer) As Boolean
Parametreler
- s
- ReadOnlySpan<Char>
Dönüştürülecek sayıyı temsil eden karakterleri içeren bir yayılma.A span containing the characters that represent the number to convert.
- result
- Int32
Bu yöntem döndüğünde, s dönüştürme başarılı olursa veya dönüştürme başarısız olursa sıfır değeri, içinde bulunan sayının 32 bitlik işaretli tamsayı değer eşdeğerini içerir.When this method returns, contains the 32-bit signed integer value equivalent of the number contained in s, if the conversion succeeded, or zero if the conversion failed. sParametresi null veya Empty ile uyumlu bir biçimde değilse, dönüştürme başarısız olur style veya şundan küçük veya büyük bir sayıyı temsil eder MinValue MaxValue .The conversion fails if the s parameter is null or Empty, is not in a format compliant with style, or represents a number less than MinValue or greater than MaxValue. Bu parametre başlatılmamış olarak geçildi; Başlangıçta sağlanan değerin result üzerine yazılır.This parameter is passed uninitialized; any value originally supplied in result will be overwritten.
Döndürülenler
truesbaşarıyla dönüştürülürse; Aksi takdirde, false .true if s was converted successfully; otherwise, false.
Şunlara uygulanır
TryParse(String, NumberStyles, IFormatProvider, Int32)
Belirtilen bir stil ve kültüre özgü biçimdeki bir sayının dize gösterimini 32 bitlik işaretli tamsayı eşdeğerine dönüştürür.Converts the string representation of a number in a specified style and culture-specific format to its 32-bit signed integer equivalent. Dönüş değeri dönüştürmenin başarılı olup olmadığını gösterir.A return value indicates whether the conversion succeeded.
public:
static bool TryParse(System::String ^ s, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] int % result);
public static bool TryParse (string s, System.Globalization.NumberStyles style, IFormatProvider provider, out int result);
public static bool TryParse (string? s, System.Globalization.NumberStyles style, IFormatProvider? provider, out int? result);
static member TryParse : string * System.Globalization.NumberStyles * IFormatProvider * int -> bool
Public Shared Function TryParse (s As String, style As NumberStyles, provider As IFormatProvider, ByRef result As Integer) As Boolean
Parametreler
- s
- String
Dönüştürülecek sayıyı içeren bir dize.A string containing a number to convert. Dize, tarafından belirtilen stil kullanılarak yorumlanır style .The string is interpreted using the style specified by style.
- style
- NumberStyles
' De bulunabilecek stil öğelerini gösteren bir sabit listesi değerlerinin bit düzeyinde birleşimi s .A bitwise combination of enumeration values that indicates the style elements that can be present in s. Belirtmek için tipik bir değer Integer .A typical value to specify is Integer.
- provider
- IFormatProvider
Hakkında kültüre özgü biçimlendirme bilgileri sağlayan nesne s .An object that supplies culture-specific formatting information about s.
- result
- Int32
Bu yöntem döndüğünde, s dönüştürme başarılı olursa veya dönüştürme başarısız olursa sıfır değeri, içinde bulunan sayının 32 bitlik işaretli tamsayı değer eşdeğerini içerir.When this method returns, contains the 32-bit signed integer value equivalent of the number contained in s, if the conversion succeeded, or zero if the conversion failed. sParametresi null veya Empty ile uyumlu bir biçimde değilse, dönüştürme başarısız olur style veya şundan küçük veya büyük bir sayıyı temsil eder MinValue MaxValue .The conversion fails if the s parameter is null or Empty, is not in a format compliant with style, or represents a number less than MinValue or greater than MaxValue. Bu parametre başlatılmamış olarak geçildi; Başlangıçta sağlanan değerin result üzerine yazılır.This parameter is passed uninitialized; any value originally supplied in result will be overwritten.
Döndürülenler
truesbaşarıyla dönüştürülürse; Aksi takdirde, false .true if s was converted successfully; otherwise, false.
Özel durumlar
style bir değer değil NumberStyles .style is not a NumberStyles value.
-veya--or-
style , ve değerlerinin bir birleşimi AllowHexSpecifier değildir HexNumber .style is not a combination of AllowHexSpecifier and HexNumber values.
Örnekler
Aşağıdaki örnek, Int32.TryParse(String, NumberStyles, IFormatProvider, Int32) bir dizi farklı dize ve değer ile yöntemini çağırır NumberStyles .The following example calls the Int32.TryParse(String, NumberStyles, IFormatProvider, Int32) method with a number of different string and NumberStyles values.
using namespace System;
using namespace System::Globalization;
void CallTryParse(String^ stringToConvert, NumberStyles styles)
{
Int32 number;
CultureInfo^ provider;
// If currency symbol is allowed, use en-US culture.
if (((Int32) (styles & NumberStyles::AllowCurrencySymbol)) > 0)
provider = gcnew CultureInfo("en-US");
else
provider = CultureInfo::InvariantCulture;
bool result = Int32::TryParse(stringToConvert, styles,
provider, number);
if (result)
Console::WriteLine("Converted '{0}' to {1}.", stringToConvert, number);
else
Console::WriteLine("Attempted conversion of '{0}' failed.",
Convert::ToString(stringToConvert));
}
void main()
{
String^ numericString;
NumberStyles styles;
numericString = "106779";
styles = NumberStyles::Integer;
CallTryParse(numericString, styles);
numericString = "-30677";
styles = NumberStyles::None;
CallTryParse(numericString, styles);
styles = NumberStyles::AllowLeadingSign;
CallTryParse(numericString, styles);
numericString = "301677-";
CallTryParse(numericString, styles);
styles = styles | NumberStyles::AllowTrailingSign;
CallTryParse(numericString, styles);
numericString = "$10634";
styles = NumberStyles::Integer;
CallTryParse(numericString, styles);
styles = NumberStyles::Integer | NumberStyles::AllowCurrencySymbol;
CallTryParse(numericString, styles);
numericString = "10345.00";
styles = NumberStyles::Integer | NumberStyles::AllowDecimalPoint;
CallTryParse(numericString, styles);
numericString = "10345.72";
styles = NumberStyles::Integer | NumberStyles::AllowDecimalPoint;
CallTryParse(numericString, styles);
numericString = "22,593";
styles = NumberStyles::Integer | NumberStyles::AllowThousands;
CallTryParse(numericString, styles);
numericString = "12E-01";
styles = NumberStyles::Integer | NumberStyles::AllowExponent;
CallTryParse(numericString, styles);
numericString = "12E03";
CallTryParse(numericString, styles);
numericString = "80c1";
CallTryParse(numericString, NumberStyles::HexNumber);
numericString = "0x80C1";
CallTryParse(numericString, NumberStyles::HexNumber);
Console::ReadLine();
}
// The example displays the following output:
// Converted '106779' to 106779.
// Attempted conversion of '-30677' failed.
// Converted '-30677' to -30677.
// Attempted conversion of '301677-' failed.
// Converted '301677-' to -301677.
// Attempted conversion of '$10634' failed.
// Converted '$10634' to 10634.
// Converted '10345.00' to 10345.
// Attempted conversion of '10345.72' failed.
// Converted '22,593' to 22593.
// Attempted conversion of '12E-01' failed.
// Converted '12E03' to 12000.
// Converted '80c1' to 32961.
// Attempted conversion of '0x80C1' failed.
using System;
using System.Globalization;
public class StringParsing
{
public static void Main()
{
string numericString;
NumberStyles styles;
numericString = "106779";
styles = NumberStyles.Integer;
CallTryParse(numericString, styles);
numericString = "-30677";
styles = NumberStyles.None;
CallTryParse(numericString, styles);
styles = NumberStyles.AllowLeadingSign;
CallTryParse(numericString, styles);
numericString = "301677-";
CallTryParse(numericString, styles);
styles = styles | NumberStyles.AllowTrailingSign;
CallTryParse(numericString, styles);
numericString = "$10634";
styles = NumberStyles.Integer;
CallTryParse(numericString, styles);
styles = NumberStyles.Integer | NumberStyles.AllowCurrencySymbol;
CallTryParse(numericString, styles);
numericString = "10345.00";
styles = NumberStyles.Integer | NumberStyles.AllowDecimalPoint;
CallTryParse(numericString, styles);
numericString = "10345.72";
styles = NumberStyles.Integer | NumberStyles.AllowDecimalPoint;
CallTryParse(numericString, styles);
numericString = "22,593";
styles = NumberStyles.Integer | NumberStyles.AllowThousands;
CallTryParse(numericString, styles);
numericString = "12E-01";
styles = NumberStyles.Integer | NumberStyles.AllowExponent;
CallTryParse(numericString, styles);
numericString = "12E03";
CallTryParse(numericString, styles);
numericString = "80c1";
CallTryParse(numericString, NumberStyles.HexNumber);
numericString = "0x80C1";
CallTryParse(numericString, NumberStyles.HexNumber);
}
private static void CallTryParse(string stringToConvert, NumberStyles styles)
{
CultureInfo provider;
// If currency symbol is allowed, use en-US culture.
if ((styles & NumberStyles.AllowCurrencySymbol) > 0)
provider = new CultureInfo("en-US");
else
provider = CultureInfo.InvariantCulture;
bool success = Int32.TryParse(stringToConvert, styles,
provider, out int number);
if (success)
Console.WriteLine("Converted '{0}' to {1}.", stringToConvert, number);
else
Console.WriteLine("Attempted conversion of '{0}' failed.",
Convert.ToString(stringToConvert));
}
}
// The example displays the following output to the console:
// Converted '106779' to 106779.
// Attempted conversion of '-30677' failed.
// Converted '-30677' to -30677.
// Attempted conversion of '301677-' failed.
// Converted '301677-' to -301677.
// Attempted conversion of '$10634' failed.
// Converted '$10634' to 10634.
// Converted '10345.00' to 10345.
// Attempted conversion of '10345.72' failed.
// Converted '22,593' to 22593.
// Attempted conversion of '12E-01' failed.
// Converted '12E03' to 12000.
// Converted '80c1' to 32961.
// Attempted conversion of '0x80C1' failed.
Imports System.Globalization
Module StringParsing
Public Sub Main()
Dim numericString As String
Dim styles As NumberStyles
numericString = "106779"
styles = NumberStyles.Integer
CallTryParse(numericString, styles)
numericString = "-30677"
styles = NumberStyles.None
CallTryParse(numericString, styles)
styles = NumberStyles.AllowLeadingSign
CallTryParse(numericString, styles)
numericString = "301677-"
CallTryParse(numericString, styles)
styles = styles Or NumberStyles.AllowTrailingSign
CallTryParse(numericString, styles)
numericString = "$10634"
styles = NumberStyles.Integer
CallTryParse(numericString, styles)
styles = NumberStyles.Integer Or NumberStyles.AllowCurrencySymbol
CallTryParse(numericString, styles)
numericString = "10345.00"
styles = NumberStyles.Integer Or NumberStyles.AllowDecimalPoint
CallTryParse(numericString, styles)
numericString = "10345.72"
styles = NumberStyles.Integer Or NumberStyles.AllowDecimalPoint
CallTryParse(numericString, styles)
numericString = "22,593"
styles = NumberStyles.Integer Or NumberStyles.AllowThousands
CallTryParse(numericString, styles)
numericString = "12E-01"
styles = NumberStyles.Integer Or NumberStyles.AllowExponent
CallTryParse(numericString, styles)
numericString = "12E03"
CallTryParse(numericString, styles)
numericString = "80c1"
CallTryParse(numericString, NumberStyles.HexNumber)
numericString = "0x80C1"
CallTryParse(numericString, NumberStyles.HexNumber)
End Sub
Private Sub CallTryParse(stringToConvert As String, styles AS NumberStyles)
Dim number As Integer
Dim provider As CultureInfo
' If currency symbol is allowed, use en-US culture.
If CBool(styles And NumberStyles.AllowCurrencySymbol) Then
provider = CultureInfo.CurrentCulture
Else
provider = New CultureInfo("en-US")
End If
Dim result As Boolean = Int32.TryParse(stringToConvert, styles, _
provider, 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 '106779' to 106779.
' Attempted conversion of '-30677' failed.
' Converted '-30677' to -30677.
' Attempted conversion of '301677-' failed.
' Converted '301677-' to -301677.
' Attempted conversion of '$10634' failed.
' Converted '$10634' to 10634.
' Converted '10345.00' to 10345.
' Attempted conversion of '10345.72' failed.
' Converted '22,593' to 22593.
' Attempted conversion of '12E-01' failed.
' Converted '12E03' to 12000.
' Converted '80c1' to 32961.
' Attempted conversion of '0x80C1' failed.
Açıklamalar
Yöntemi yöntemi TryParse gibidir Parse , ancak TryParse dönüştürme başarısız olursa Yöntem bir özel durum oluşturmaz.The TryParse method is like the Parse method, except the TryParse method does not throw an exception if the conversion fails. Geçersiz bir olayda bir için test etmek üzere özel durum işlemenin kullanılması gereksinimini ortadan kaldırır FormatException s ve başarıyla ayrıştırılamaz.It eliminates the need to use exception handling to test for a FormatException in the event that s is invalid and cannot be parsed successfully.
styleParametresi, s ayrıştırma işleminin başarılı olması için parametresinde izin verilen stil öğelerini (boşluk veya pozitif veya negatif bir işaret gibi) tanımlar.The style parameter defines the style elements (such as white space or a positive or negative sign) that are allowed in the s parameter for the parse operation to succeed. Numaralandırmadaki bit bayrakları birleşimi olmalıdır NumberStyles .It must be a combination of bit flags from the NumberStyles enumeration. Değerine bağlı olarak style , s parametresi aşağıdaki öğeleri içerebilir:Depending on the value of style, the s parameter may include the following elements:
[ws][$][sign][digits,]digits[.fractional_digits][e[sign]digits][ws][ws][$][sign][digits,]digits[.fractional_digits][e[sign]digits][ws]
Ya da parametre şunu style içeriyorsa AllowHexSpecifier :Or, if the style parameter includes AllowHexSpecifier:
[ws]hexdigits[ws][ws]hexdigits[ws]
Köşeli ayraçlar ([ve]) içindeki öğeler isteğe bağlıdır.Items in square brackets ([ and ]) are optional. Aşağıdaki tablo her öğeyi açıklar.The following table describes each element.
| ÖğeElement | AçıklamaDescription |
|---|---|
| wsws | İsteğe bağlı beyaz boşluk.Optional white space. Boşluk, s style NumberStyles.AllowLeadingWhite bayrağı içeriyorsa veya sonunda s bayrak varsa, ' style NumberStyles.AllowTrailingWhite nin başlangıcında boşluk görünebilir.White space can appear at the beginning of s if style includes the NumberStyles.AllowLeadingWhite flag, or at the end of s if style includes the NumberStyles.AllowTrailingWhite flag. |
| $ | Kültüre özgü para birimi simgesi.A culture-specific currency symbol. Dizedeki konumu, CurrencyPositivePattern NumberFormatInfo parametresinin yöntemi tarafından döndürülen nesnesinin özelliği tarafından tanımlanır GetFormat provider .Its position in the string is defined by the CurrencyPositivePattern property of the NumberFormatInfo object returned by the GetFormat method of the provider parameter. Para birimi simgesi s bayrağı içeriyorsa içinde görünebilir style NumberStyles.AllowCurrencySymbol .The currency symbol can appear in s if style includes the NumberStyles.AllowCurrencySymbol flag. |
| signsign | İsteğe bağlı bir işaret.An optional sign. Bir işaret simgesi s style , veya işaretlerini içeriyorsa içinde görünebilir NumberStyles.AllowLeadingSign NumberStyles.AllowTrailingSign .A sign symbol can appear in s if style includes the NumberStyles.AllowLeadingSign or NumberStyles.AllowTrailingSign flags. |
| rakamlardigits | 0 İle 9 arasında bir basamak dizisi.A sequence of digits from 0 through 9. |
| ,, | Kültüre özgü binlik ayırıcı.A culture-specific thousands separator. Tarafından belirtilen kültürün binlik ayırıcısı, provider bayrağını içeriyorsa içinde görünebilir s style NumberStyles.AllowThousands .The thousands separator of the culture specified by provider can appear in s if style includes the NumberStyles.AllowThousands flag. |
| .. | Bir kültüre özgü ondalık nokta sembolü.A culture-specific decimal point symbol. Tarafından belirtilen kültürün ondalık nokta sembolü, provider bayrağını içeriyorsa içinde görünebilir s style NumberStyles.AllowDecimalPoint .The decimal point symbol of the culture specified by provider can appear in s if style includes the NumberStyles.AllowDecimalPoint flag. |
| fractional_digitsfractional_digits | 0 basamağının bir veya daha çok tekrarlanması.One or more occurrences of the digit 0. Kesirli basamaklar s yalnızca bayrağını içeriyorsa ' de görünebilir style NumberStyles.AllowDecimalPoint .Fractional digits can appear in s only if style includes the NumberStyles.AllowDecimalPoint flag. |
| ae | Değerin üstel gösterimde temsil edildiğini gösteren 'e' veya 'E' karakteri.The 'e' or 'E' character, which indicates that the value is represented in exponential notation. sParametresi, bayrağı içeriyorsa üstel gösterimdeki bir sayıyı temsil edebilir style NumberStyles.AllowExponent .The s parameter can represent a number in exponential notation if style includes the NumberStyles.AllowExponent flag. |
| onaltıbasamaklarhexdigits | 0 İle f veya 0 ile f arasında onaltılık basamak dizisi.A sequence of hexadecimal digits from 0 through f, or 0 through F. |
Not
' Deki herhangi bir Sonlandırıcı NUL (U + 0000) karakteri, s bağımsız değişkenin değerine bakılmaksızın ayrıştırma işlemi tarafından yok sayılır style .Any terminating NUL (U+0000) characters in s are ignored by the parsing operation, regardless of the value of the style argument.
Yalnızca ondalık basamakları olan (bayrağa karşılık gelen) bir dize NumberStyles.None her zaman başarıyla ayrıştırır.A string with decimal digits only (which corresponds to the NumberStyles.None flag) always parses successfully. Kalan üyelerin çoğu,, NumberStyles ancak bu giriş dizesinde bulunması gerekli olmayan öğeleri denetler.Most of the remaining NumberStyles members control elements that may be but are not required to be present in this input string. Aşağıdaki tabloda, tek tek NumberStyles üyelerin içinde bulunabilecek öğeleri nasıl etkilediği gösterilmektedir s .The following table indicates how individual NumberStyles members affect the elements that may be present in s.
| Bileşik olmayan NumberStyles değerleriNon-composite NumberStyles values | Basamaklara olarak s bileşeninde izin verilen öğelerElements permitted in s in addition to digits |
|---|---|
| NumberStyles.None | Yalnızca ondalık basamaklar.Decimal digits only. |
| NumberStyles.AllowDecimalPoint | Ondalık nokta (.) ve fractional_digits öğeleri.The decimal point (.) and fractional_digits elements. Ancak fractional_digits yalnızca bir veya daha fazla 0 basamaktan oluşmalıdır ya da Yöntem döndürülür false .However, fractional_digits must consist of only one or more 0 digits or the method returns false. |
| NumberStyles.AllowExponent | sParametresi üstel gösterimi de kullanabilir.The s parameter can also use exponential notation. sÜstel gösterimde bir sayıyı temsil ediyorsa, Int32 sıfır olmayan, kesirli bir bileşen olmadan veri türünün aralığı içinde bir tamsayıyı temsil etmelidir.If s represents a number in exponential notation, it must represent an integer within the range of the Int32 data type without a non-zero, fractional component. |
| NumberStyles.AllowLeadingWhite | Öğesinin başındaki WS öğesi s .The ws element at the beginning of s. |
| NumberStyles.AllowTrailingWhite | Sonunda WS öğesi s .The ws element at the end of s. |
| NumberStyles.AllowLeadingSign | Bir işaret, rakamlardan önce görünebilir.A sign can appear before digits. |
| NumberStyles.AllowTrailingSign | Bir işaret, rakamlardan sonra görünebilir.A sign can appear after digits. |
| NumberStyles.AllowParentheses | Sayısal değeri çevreleyen parantezler biçimindeki işaret öğesi.The sign element in the form of parentheses enclosing the numeric value. |
| NumberStyles.AllowThousands | Binlik ayırıcı (,) öğesi.The thousands separator (,) element. |
| NumberStyles.AllowCurrencySymbol | $ Öğesi.The $ element. |
| NumberStyles.Currency | Tüm öğeler.All elements. sParametre, bir onaltılı sayıyı veya üstel gösterimdeki bir sayıyı temsil edemez.The s parameter cannot represent a hexadecimal number or a number in exponential notation. |
| NumberStyles.Float | ' In başındaki veya sonundaki WS öğesi, s öğesinin başlangıcında s ve ondalık nokta (.) simgesi.The ws element at the beginning or end of s, sign at the beginning of s, and the decimal point (.) symbol. sParametresi üstel gösterimi de kullanabilir.The s parameter can also use exponential notation. |
| NumberStyles.Number | WS, işaret, binlik ayırıcı (,) ve ondalık nokta (.) öğeleri.The ws, sign, thousands separator (,), and decimal point (.) elements. |
| NumberStyles.Any | Hariç tüm stiller, s onaltılı bir sayıyı temsil edemez.All styles, except s cannot represent a hexadecimal number. |
NumberStyles.AllowHexSpecifierBayrak kullanılırsa, s ön ek olmadan bir onaltılık değer olmalıdır.If the NumberStyles.AllowHexSpecifier flag is used, s must be a hexadecimal value without a prefix. Örneğin, "C9AF3" başarıyla ayrıştırır, ancak "0xC9AF3" yoktur.For example, "C9AF3" parses successfully, but "0xC9AF3" does not. İçinde mevcut olabilecek tek bayraklar style ve ' dir NumberStyles.AllowLeadingWhite NumberStyles.AllowTrailingWhite .The only other flags that can be present in style are NumberStyles.AllowLeadingWhite and NumberStyles.AllowTrailingWhite. ( NumberStyles Numaralandırma, NumberStyles.HexNumber her iki boşluk bayrağını da içeren bileşik bir stile sahiptir.)(The NumberStyles enumeration has a composite style, NumberStyles.HexNumber, that includes both white space flags.)
Parametresi, yöntemi nesne döndüren bir nesne provider IFormatProvider veya nesne gibi bir uygulama CultureInfo NumberFormatInfo GetFormat NumberFormatInfo .The provider parameter is an IFormatProvider implementation, such as a CultureInfo object or a NumberFormatInfo object, whose GetFormat method returns a NumberFormatInfo object. NumberFormatInfoNesnesi, biçimi hakkında kültüre özgü bilgiler sağlar s .The NumberFormatInfo object provides culture-specific information about the format of s. providerİse null , NumberFormatInfo geçerli kültürün nesnesi kullanılır.If provider is null, the NumberFormatInfo object for the current culture is used.
Ayrıca bkz.
- Parse(String)
- NumberStyles
- ToString()
- .NET 'te sayısal dizeleri ayrıştırmaParsing Numeric Strings in .NET
Şunlara uygulanır
TryParse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider, Int32)
Belirtilen bir stilin ve kültüre özgü biçimdeki bir sayının span gösterimini 32 bitlik işaretli tamsayı eşdeğerine dönüştürür.Converts the span representation of a number in a specified style and culture-specific format to its 32-bit signed integer equivalent. Dönüş değeri dönüştürmenin başarılı olup olmadığını gösterir.A return value indicates whether the conversion succeeded.
public:
static bool TryParse(ReadOnlySpan<char> s, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] int % result);
public static bool TryParse (ReadOnlySpan<char> s, System.Globalization.NumberStyles style, IFormatProvider? provider, out int result);
public static bool TryParse (ReadOnlySpan<char> s, System.Globalization.NumberStyles style, IFormatProvider provider, out int result);
static member TryParse : ReadOnlySpan<char> * System.Globalization.NumberStyles * IFormatProvider * int -> bool
Public Shared Function TryParse (s As ReadOnlySpan(Of Char), style As NumberStyles, provider As IFormatProvider, ByRef result As Integer) As Boolean
Parametreler
- s
- ReadOnlySpan<Char>
Dönüştürülecek sayıyı temsil eden karakterleri içeren bir yayılma.A span containing the characters that represent the number to convert. Yayılma, tarafından belirtilen stil kullanılarak yorumlanır styleThe span is interpreted using the style specified by style
- style
- NumberStyles
' De bulunabilecek stil öğelerini gösteren bir sabit listesi değerlerinin bit düzeyinde birleşimi s .A bitwise combination of enumeration values that indicates the style elements that can be present in s. Belirtmek için tipik bir değer Integer .A typical value to specify is Integer.
- provider
- IFormatProvider
Hakkında kültüre özgü biçimlendirme bilgileri sağlayan nesne s .An object that supplies culture-specific formatting information about s.
- result
- Int32
Bu yöntem döndüğünde, s dönüştürme başarılı olursa veya dönüştürme başarısız olursa sıfır değeri, içinde bulunan sayının 32 bitlik işaretli tamsayı değer eşdeğerini içerir.When this method returns, contains the 32-bit signed integer value equivalent of the number contained in s, if the conversion succeeded, or zero if the conversion failed. sParametresi null veya Empty ile uyumlu bir biçimde değilse, dönüştürme başarısız olur style veya şundan küçük veya büyük bir sayıyı temsil eder MinValue MaxValue .The conversion fails if the s parameter is null or Empty, is not in a format compliant with style, or represents a number less than MinValue or greater than MaxValue. Bu parametre başlatılmamış olarak geçildi; Başlangıçta sağlanan değerin result üzerine yazılır.This parameter is passed uninitialized; any value originally supplied in result will be overwritten.
Döndürülenler
truesbaşarıyla dönüştürülürse; Aksi takdirde, false .true if s was converted successfully; otherwise, false.