Int64.TryParse Méthode
Définition
Convertit la représentation sous forme de chaîne d'un nombre en son équivalent entier 64 bits signé.Converts the string representation of a number to its 64-bit signed integer equivalent. Une valeur de retour indique si la conversion a réussi ou a échoué.A return value indicates whether the conversion succeeded or failed.
Surcharges
TryParse(String, Int64) |
Convertit la représentation sous forme de chaîne d'un nombre en son équivalent entier 64 bits signé.Converts the string representation of a number to its 64-bit signed integer equivalent. Une valeur de retour indique si la conversion a réussi ou a échoué.A return value indicates whether the conversion succeeded or failed. |
TryParse(ReadOnlySpan<Char>, Int64) |
Convertit la représentation d’étendue d’un nombre en entier signé 64 bits équivalent.Converts the span representation of a number to its 64-bit signed integer equivalent. Une valeur de retour indique si la conversion a réussi ou a échoué.A return value indicates whether the conversion succeeded or failed. |
TryParse(String, NumberStyles, IFormatProvider, Int64) |
Convertit la représentation sous forme de chaîne d'un nombre dans un style et un format propre à une culture spécifiés en entier 64 bits signé équivalent.Converts the string representation of a number in a specified style and culture-specific format to its 64-bit signed integer equivalent. Une valeur de retour indique si la conversion a réussi ou a échoué.A return value indicates whether the conversion succeeded or failed. |
TryParse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider, Int64) |
Convertit la représentation sous forme d’étendue d'un nombre dans un style spécifique et un format propre à une culture spécifique en entier 64 bits signé équivalent.Converts the span representation of a number in a specified style and culture-specific format to its 64-bit signed integer equivalent. Une valeur de retour indique si la conversion a réussi ou a échoué.A return value indicates whether the conversion succeeded or failed. |
TryParse(String, Int64)
Convertit la représentation sous forme de chaîne d'un nombre en son équivalent entier 64 bits signé.Converts the string representation of a number to its 64-bit signed integer equivalent. Une valeur de retour indique si la conversion a réussi ou a échoué.A return value indicates whether the conversion succeeded or failed.
public:
static bool TryParse(System::String ^ s, [Runtime::InteropServices::Out] long % result);
public static bool TryParse (string s, out long result);
static member TryParse : string * int64 -> bool
Public Shared Function TryParse (s As String, ByRef result As Long) As Boolean
Paramètres
- s
- String
Chaîne contenant un nombre à convertir.A string containing a number to convert.
- result
- Int64
Quand cette méthode est retournée, contient la valeur de l'entier signé 64 bits équivalente au nombre contenu dans s
si la conversion a réussi, ou zéro si elle a échoué.When this method returns, contains the 64-bit signed integer value equivalent of the number contained in s
, if the conversion succeeded, or zero if the conversion failed. La conversion échoue si le paramètre s
est null
ou Empty, n’est pas au format approprié ou représente un nombre inférieur à MinValue ou supérieur à 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. Ce paramètre est passé non initialisé ; toute valeur fournie initialement dans result
sera remplacée.This parameter is passed uninitialized; any value originally supplied in result
will be overwritten.
Retours
true
si la conversion de s
est réussie ; sinon, false
.true
if s
was converted successfully; otherwise, false
.
Exemples
L’exemple suivant appelle la méthode Int64.TryParse(String, Int64) avec plusieurs valeurs de chaîne différentes.The following example calls the Int64.TryParse(String, Int64) method with a number of different string values.
using System;
public class StringParsing
{
public static void Main()
{
TryToParse(null);
TryToParse("160519");
TryToParse("9432.0");
TryToParse("16,667");
TryToParse(" -322 ");
TryToParse("+4302");
TryToParse("(100);");
TryToParse("01FA");
}
private static void TryToParse(string value)
{
bool success = Int64.TryParse(value, out long number);
if (success)
{
Console.WriteLine("Converted '{0}' to {1}.", value, number);
}
else
{
if (value == null) value = "";
Console.WriteLine("Attempted conversion of '{0}' failed.", value);
}
}
}
// The example displays the following output to the console:
// 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.
Module StringParsing
Public Sub Main()
TryToParse(Nothing)
TryToParse("160519")
TryToParse("9432.0")
TryToParse("16,667")
TryToParse(" -322 ")
TryToParse("+4302")
TryToParse("(100)")
TryToParse("01FA")
End Sub
Private Sub TryToParse(value As String)
Dim number As Long
Dim result As Boolean = Int64.TryParse(value, number)
If result Then
Console.WriteLine("Converted '{0}' to {1}.", value, number)
Else
If value Is Nothing Then value = ""
Console.WriteLine("Attempted conversion of '{0}' failed.", value)
End If
End Sub
End Module
' The example displays the following output to the console:
' 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.
Voici quelques-unes des chaînes que la méthode TryParse(String, Int64) ne peut pas convertir dans cet exemple :Some of the strings that the TryParse(String, Int64) method is unable to convert in this example are:
"9432.0"."9432.0". La conversion échoue car la chaîne ne peut pas contenir de séparateur décimal ; il doit contenir uniquement des chiffres intégraux.The conversion fails because the string cannot contain a decimal separator; it must contain integral digits only.
"16,667"."16,667". La conversion échoue car la chaîne ne peut pas contenir de séparateurs de groupes ; il doit contenir uniquement des chiffres intégraux.The conversion fails because the string cannot contain group separators; it must contain integral digits only.
"(100)"."(100)". La conversion échoue, car la chaîne ne peut pas contenir un signe négatif autre que celui défini par les propriétés NumberFormatInfo.NegativeSign et NumberFormatInfo.NumberNegativePattern de la culture actuelle.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". La conversion échoue car la chaîne ne peut pas contenir de chiffres hexadécimaux ; il doit contenir uniquement des chiffres décimaux.The conversion fails because the string cannot contain hexadecimal digits; it must contain decimal digits only.
Remarques
La méthode TryParse est semblable à la méthode Parse, à la différence que la méthode TryParse ne lève pas d’exception en cas d’échec de la conversion.The TryParse method is like the Parse method, except the TryParse method does not throw an exception if the conversion fails. Il élimine la nécessité d’utiliser la gestion des exceptions pour tester un FormatException dans le cas où s
n’est pas valide et ne peut pas être analysé avec succès.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.
Le paramètre s
contient un numéro de la forme suivante :The s
parameter contains a number of the form:
[ws][sign]digits[ws][ws][sign]digits[ws]
Les éléments entre crochets ([ et ]) sont facultatifs.Elements in square brackets ([ and ]) are optional. Le tableau suivant décrit chaque élément.The following table describes each element.
ÉlémentElement | DescriptionDescription |
---|---|
wsws | Espace blanc facultatif.An optional white space. |
signsign | Signe facultatif.An optional sign. |
digitsdigits | Séquence de chiffres allant de 0 à 9.A sequence of digits ranging from 0 to 9. |
Le paramètre s
est interprété à l’aide du style NumberStyles.Integer.The s
parameter is interpreted using the NumberStyles.Integer style. En plus des chiffres décimaux, seuls les espaces de début et de fin, ainsi qu’un signe de début, sont autorisés.In addition to the decimal digits, only leading and trailing spaces together with a leading sign are allowed. Pour définir explicitement les éléments de style avec les informations de mise en forme propres à la culture qui peuvent être présentes dans s
, utilisez la méthode TryParse(String, NumberStyles, IFormatProvider, Int64).To explicitly define the style elements together with the culture-specific formatting information that can be present in s
, use the TryParse(String, NumberStyles, IFormatProvider, Int64) method.
Le paramètre s
est analysé à l’aide des informations de mise en forme d’un objet NumberFormatInfo initialisé pour la culture système en cours.The s
parameter is parsed using the formatting information in a NumberFormatInfo object initialized for the current system culture. Pour plus d'informations, consultez CurrentInfo.For more information, see CurrentInfo.
Cette surcharge de la méthode TryParse interprète tous les chiffres du paramètre s
comme des chiffres décimaux.This overload of the TryParse method interprets all digits in the s
parameter as decimal digits. Pour analyser la représentation sous forme de chaîne d’un nombre hexadécimal, appelez la surcharge TryParse(String, NumberStyles, IFormatProvider, Int64).To parse the string representation of a hexadecimal number, call the TryParse(String, NumberStyles, IFormatProvider, Int64) overload.
Voir aussi
- Parse(String)
- ToString()
- Analyse de chaînes numériques dans .NETParsing Numeric Strings in .NET
- Exemple : utilitaire de mise en forme WinForms .NETC#Core ()Sample: .NET Core WinForms Formatting Utility (C#)
- Exemple : utilitaire de mise en forme WinForms .NET Core (Visual Basic)Sample: .NET Core WinForms Formatting Utility (Visual Basic)
TryParse(ReadOnlySpan<Char>, Int64)
Convertit la représentation d’étendue d’un nombre en entier signé 64 bits équivalent.Converts the span representation of a number to its 64-bit signed integer equivalent. Une valeur de retour indique si la conversion a réussi ou a échoué.A return value indicates whether the conversion succeeded or failed.
public:
static bool TryParse(ReadOnlySpan<char> s, [Runtime::InteropServices::Out] long % result);
public static bool TryParse (ReadOnlySpan<char> s, out long result);
static member TryParse : ReadOnlySpan<char> * int64 -> bool
Public Shared Function TryParse (s As ReadOnlySpan(Of Char), ByRef result As Long) As Boolean
Paramètres
- s
- ReadOnlySpan<Char>
Étendue contenant les caractères représentant le nombre à convertir.A span containing the characters representing the number to convert.
- result
- Int64
Quand cette méthode est retournée, contient la valeur de l'entier signé 64 bits équivalente au nombre contenu dans s
si la conversion a réussi, ou zéro si elle a échoué.When this method returns, contains the 64-bit signed integer value equivalent of the number contained in s
, if the conversion succeeded, or zero if the conversion failed. La conversion échoue si le paramètre s
est null
ou Empty, n’est pas au format approprié ou représente un nombre inférieur à MinValue ou supérieur à 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. Ce paramètre est passé non initialisé ; toute valeur fournie initialement dans result
sera remplacée.This parameter is passed uninitialized; any value originally supplied in result
will be overwritten.
Retours
true
si la conversion de s
est réussie ; sinon, false
.true
if s
was converted successfully; otherwise, false
.
TryParse(String, NumberStyles, IFormatProvider, Int64)
Convertit la représentation sous forme de chaîne d'un nombre dans un style et un format propre à une culture spécifiés en entier 64 bits signé équivalent.Converts the string representation of a number in a specified style and culture-specific format to its 64-bit signed integer equivalent. Une valeur de retour indique si la conversion a réussi ou a échoué.A return value indicates whether the conversion succeeded or failed.
public:
static bool TryParse(System::String ^ s, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] long % result);
public static bool TryParse (string s, System.Globalization.NumberStyles style, IFormatProvider provider, out long result);
static member TryParse : string * System.Globalization.NumberStyles * IFormatProvider * int64 -> bool
Public Shared Function TryParse (s As String, style As NumberStyles, provider As IFormatProvider, ByRef result As Long) As Boolean
Paramètres
- s
- String
Chaîne contenant un nombre à convertir.A string containing a number to convert. La chaîne est interprétée à l'aide du style spécifié par style
.The string is interpreted using the style specified by style
.
- style
- NumberStyles
Combinaison de bits de valeurs d'énumération qui indique les éléments de style qui peuvent être présents dans s
.A bitwise combination of enumeration values that indicates the style elements that can be present in s
. Une valeur typique à spécifier est Integer.A typical value to specify is Integer.
- provider
- IFormatProvider
Objet qui fournit des informations de mise en forme propres à la culture sur s
.An object that supplies culture-specific formatting information about s
.
- result
- Int64
Quand cette méthode est retournée, contient la valeur de l'entier signé 64 bits équivalente au nombre contenu dans s
si la conversion a réussi, ou zéro si elle a échoué.When this method returns, contains the 64-bit signed integer value equivalent of the number contained in s
, if the conversion succeeded, or zero if the conversion failed. La conversion échoue si le paramètre s
est null
ou Empty, qu'il n'est pas dans un format conforme à style
ou qu'il représente un nombre inférieur à MinValue ou supérieur à 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. Ce paramètre est passé non initialisé ; toute valeur fournie initialement dans result
sera remplacée.This parameter is passed uninitialized; any value originally supplied in result
will be overwritten.
Retours
true
si la conversion de s
est réussie ; sinon, false
.true
if s
was converted successfully; otherwise, false
.
Exceptions
style
n’est pas une valeur NumberStyles.style
is not a NumberStyles value.
- ou --or-
style
n’est pas une combinaison des valeurs AllowHexSpecifier et HexNumber.style
is not a combination of AllowHexSpecifier and HexNumber values.
Exemples
L’exemple suivant appelle la méthode TryParse(String, NumberStyles, IFormatProvider, Int64) avec un certain nombre de valeurs de NumberStyles et de chaîne différentes.The following example calls the TryParse(String, NumberStyles, IFormatProvider, Int64) method with a number of different string and NumberStyles values.
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 = Int64.TryParse(stringToConvert, styles,
provider, out long 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 Long
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 = Int64.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.
Remarques
La méthode TryParse est semblable à la méthode Parse, à la différence que la méthode TryParse ne lève pas d’exception en cas d’échec de la conversion.The TryParse method is like the Parse method, except the TryParse method does not throw an exception if the conversion fails. Il élimine la nécessité d’utiliser la gestion des exceptions pour tester un FormatException dans le cas où s
n’est pas valide et ne peut pas être analysé avec succès.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.
Le paramètre style
définit les éléments de style (tels qu’un espace blanc ou un signe positif ou négatif) qui sont autorisés dans le paramètre s
pour que l’opération d’analyse aboutisse.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. Il doit s’agir d’une combinaison de bits indicateurs issus de l’énumération NumberStyles.It must be a combination of bit flags from the NumberStyles enumeration. Selon la valeur de style
, le paramètre s
peut inclure les éléments suivants :Depending on the value of style
,the s
parameter may include the following elements:
[ws][$][sign][digits,]digits[.fractional_digits][e[sign]exponential_digits][ws][ws][$][sign][digits,]digits[.fractional_digits][e[sign]exponential_digits][ws]
Ou, si le paramètre style
comprend NumberStyles.AllowHexSpecifier:Or, if the style
parameter includes NumberStyles.AllowHexSpecifier:
[ws]hexdigits[ws][ws]hexdigits[ws]
Les éléments entre crochets ([ et ]) sont facultatifs.Elements in square brackets ([ and ]) are optional. Le tableau suivant décrit chaque élément.The following table describes each element.
ÉlémentElement | DescriptionDescription |
---|---|
wsws | Espace blanc facultatif.Optional white space. Un espace blanc peut apparaître au début de s si style comprend l’indicateur NumberStyles.AllowLeadingWhite ou à la fin de s si style comprend l’indicateur NumberStyles.AllowTrailingWhite.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. |
$ | Symbole monétaire propre à la culture.A culture-specific currency symbol. Sa position dans la chaîne est définie par la propriété CurrencyPositivePattern de l’objet NumberFormatInfo retourné par la méthode GetFormat du paramètre 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. Le symbole monétaire peut apparaître dans s si style comprend l’indicateur NumberStyles.AllowCurrencySymbol.The currency symbol can appear in s if style includes the NumberStyles.AllowCurrencySymbol flag. |
signsign | Signe facultatif.An optional sign. Un symbole de signe peut apparaître dans s si style contient les indicateurs NumberStyles.AllowLeadingSign ou NumberStyles.AllowTrailingSign.A sign symbol can appear in s if style includes the NumberStyles.AllowLeadingSign or NumberStyles.AllowTrailingSign flags. |
digitsdigits fractional_digitsfractional_digits exponential_digitsexponential_digits |
Séquence de chiffres comprise entre 0 et 9.A sequence of digits from 0 through 9. Pour fractional_digits, seul le chiffre 0 est valide.For fractional_digits, only the digit 0 is valid. |
,, | Séparateur des milliers spécifique à la culture.A culture-specific thousands separator. Le séparateur des milliers de la culture spécifiée par provider peut apparaître dans s si style comprend l’indicateur NumberStyles.AllowThousands.The thousands separator of the culture specified by provider can appear in s if style includes the NumberStyles.AllowThousands flag. |
.. | Symbole de virgule décimale propre à la culture.A culture-specific decimal point symbol. Le symbole de virgule décimale de la culture spécifiée par provider peut apparaître dans s si style comprend l’indicateur de NumberStyles.AllowDecimalPoint.The decimal point symbol of the culture specified by provider can appear in s if style includes the NumberStyles.AllowDecimalPoint flag. |
ee | Caractère « e » ou « E », qui indique que la valeur est représentée en notation exponentielle.The 'e' or 'E' character, which indicates that the value is represented in exponential notation. Le paramètre s peut représenter un nombre en notation exponentielle si style comprend l’indicateur NumberStyles.AllowExponent.The s parameter can represent a number in exponential notation if style includes the NumberStyles.AllowExponent flag. |
hexdigitshexdigits | Séquence de chiffres hexadécimaux comprise entre 0 et f, ou 0 et F.A sequence of hexadecimal digits from 0 through f, or 0 through F. |
Notes
Les caractères null (U + 0000) de fin dans s
sont ignorés par l’opération d’analyse, quelle que soit la valeur de l’argument style
.Any terminating NUL (U+0000) characters in s
are ignored by the parsing operation, regardless of the value of the style
argument.
Une chaîne avec des chiffres décimaux uniquement (qui correspond à l’indicateur NumberStyles.None) est toujours analysée avec succès.A string with decimal digits only (which corresponds to the NumberStyles.None flag) always parses successfully. La plupart des membres restants du NumberStyles contrôlent les éléments qui peuvent être présents dans cette chaîne d’entrée.Most of the remaining NumberStyles members control elements that may be but are not required to be present in this input string. Le tableau suivant indique la manière dont les membres de NumberStyles individuelles affectent les éléments qui peuvent être présents dans s
.The following table indicates how individual NumberStyles members affect the elements that may be present in s
.
Valeurs NumberStyles non compositesNon-composite NumberStyles values | Éléments autorisés dans s en plus des chiffresElements permitted in s in addition to digits |
---|---|
NumberStyles.None | Chiffres décimaux uniquement.Decimal digits only. |
NumberStyles.AllowDecimalPoint | Virgule décimale ( .The decimal point ( . ) et fractional_digits éléments.) and fractional_digits elements. Toutefois, fractional_digits doit être composé d’un ou de plusieurs chiffres 0, ou la méthode retourne false .However, fractional_digits must consist of only one or more 0 digits or the method returns false . |
NumberStyles.AllowExponent | Le paramètre s peut également utiliser la notation exponentielle.The s parameter can also use exponential notation. Le paramètre s doit représenter un entier compris dans la plage du type de données Int64 sans composant fractionnaire différent de zéro.The s parameter must represent an integer within the range of the Int64 data type without a non-zero fractional component. |
NumberStyles.AllowLeadingWhite | Élément WS au début de s .The ws element at the beginning of s . |
NumberStyles.AllowTrailingWhite | Élément WS à la fin de s .The ws element at the end of s . |
NumberStyles.AllowLeadingSign | Un signe peut apparaître avant les chiffres.A sign can appear before digits. |
NumberStyles.AllowTrailingSign | Un signe peut apparaître après des chiffres.A sign can appear after digits. |
NumberStyles.AllowParentheses | Élément de signe sous forme de parenthèses entourant la valeur numérique.The sign element in the form of parentheses enclosing the numeric value. |
NumberStyles.AllowThousands | Élément de séparateur des milliers ( , ).The thousands separator ( , ) element. |
NumberStyles.AllowCurrencySymbol | Élément $ .The $ element. |
NumberStyles.Currency | Tous les éléments.All elements. Le paramètre s ne peut pas représenter un nombre hexadécimal ou un nombre en notation exponentielle.The s parameter cannot represent a hexadecimal number or a number in exponential notation. |
NumberStyles.Float | L’élément WS au début ou à la fin de s se connecte au début de s et la virgule décimale ( .The ws element at the beginning or end of s , sign at the beginning of s , and the decimal point ( . symbole.) symbol. Le paramètre s peut également utiliser la notation exponentielle.The s parameter can also use exponential notation. |
NumberStyles.Number | Éléments de séparateur WS, signe, milliers (,) et virgule décimale (.).The ws, sign, thousands separator (,), and decimal point (.) elements. |
NumberStyles.Any | Tous les styles, à l’exception de s ne peuvent pas représenter un nombre hexadécimal.All styles, except s cannot represent a hexadecimal number. |
Si l’indicateur NumberStyles.AllowHexSpecifier est utilisé, s
doit être une valeur hexadécimale sans préfixe.If the NumberStyles.AllowHexSpecifier flag is used, s
must be a hexadecimal value without a prefix. Par exemple, « C9AF3 » est analysé avec succès, mais pas « 0xC9AF3 ».For example, "C9AF3" parses successfully, but "0xC9AF3" does not. Les seuls autres indicateurs qui peuvent être présents dans style
sont NumberStyles.AllowLeadingWhite et NumberStyles.AllowTrailingWhite.The only other flags that can be present in style
are NumberStyles.AllowLeadingWhite and NumberStyles.AllowTrailingWhite. (L’énumération NumberStyles a un style composite, NumberStyles.HexNumber, qui inclut les deux indicateurs d’espace blanc.)(The NumberStyles enumeration has a composite style, NumberStyles.HexNumber, that includes both white space flags.)
Le paramètre provider
est une implémentation IFormatProvider, telle qu’un objet CultureInfo ou un objet NumberFormatInfo, dont la méthode GetFormat retourne un objet NumberFormatInfo.The provider
parameter is an IFormatProvider implementation, such as a CultureInfo object or a NumberFormatInfo object, whose GetFormat method returns a NumberFormatInfo object. L’objet NumberFormatInfo fournit des informations spécifiques à la culture sur le format de s
.The NumberFormatInfo object provides culture-specific information about the format of s
. Si provider
est null
, l’objet NumberFormatInfo pour la culture actuelle est utilisé.If provider
is null
, the NumberFormatInfo object for the current culture is used.
Voir aussi
TryParse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider, Int64)
Convertit la représentation sous forme d’étendue d'un nombre dans un style spécifique et un format propre à une culture spécifique en entier 64 bits signé équivalent.Converts the span representation of a number in a specified style and culture-specific format to its 64-bit signed integer equivalent. Une valeur de retour indique si la conversion a réussi ou a échoué.A return value indicates whether the conversion succeeded or failed.
public:
static bool TryParse(ReadOnlySpan<char> s, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] long % result);
public static bool TryParse (ReadOnlySpan<char> s, System.Globalization.NumberStyles style, IFormatProvider provider, out long result);
static member TryParse : ReadOnlySpan<char> * System.Globalization.NumberStyles * IFormatProvider * int64 -> bool
Public Shared Function TryParse (s As ReadOnlySpan(Of Char), style As NumberStyles, provider As IFormatProvider, ByRef result As Long) As Boolean
Paramètres
- s
- ReadOnlySpan<Char>
Étendue contenant les caractères représentant le nombre à convertir.A span containing the characters representing the number to convert. L’étendue est interprétée à l'aide du style spécifié par style
.The span is interpreted using the style specified by style
.
- style
- NumberStyles
Combinaison de bits de valeurs d'énumération qui indique les éléments de style qui peuvent être présents dans s
.A bitwise combination of enumeration values that indicates the style elements that can be present in s
. Une valeur typique à spécifier est Integer.A typical value to specify is Integer.
- provider
- IFormatProvider
Objet qui fournit des informations de mise en forme propres à la culture sur s
.An object that supplies culture-specific formatting information about s
.
- result
- Int64
Quand cette méthode est retournée, contient la valeur de l'entier signé 64 bits équivalente au nombre contenu dans s
si la conversion a réussi, ou zéro si elle a échoué.When this method returns, contains the 64-bit signed integer value equivalent of the number contained in s
, if the conversion succeeded, or zero if the conversion failed. La conversion échoue si le paramètre s
est null
ou Empty, qu'il n'est pas dans un format conforme à style
ou qu'il représente un nombre inférieur à MinValue ou supérieur à 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. Ce paramètre est passé non initialisé ; toute valeur fournie initialement dans result
sera remplacée.This parameter is passed uninitialized; any value originally supplied in result
will be overwritten.
Retours
true
si la conversion de s
est réussie ; sinon, false
.true
if s
was converted successfully; otherwise, false
.