SByte.TryParse 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
숫자의 문자열 표현을 해당하는 8비트 부호 있는 정수로 변환합니다. 반환 코드는 변환의 성공 여부를 나타냅니다.
오버로드
TryParse(ReadOnlySpan<Byte>, IFormatProvider, SByte) |
UTF-8 문자의 범위를 값으로 구문 분석하려고 시도합니다. |
TryParse(ReadOnlySpan<Char>, SByte) |
숫자의 범위 표현을 해당하는 SByte 변환하려고 시도하고 변환이 성공했는지 여부를 나타내는 값을 반환합니다. |
TryParse(String, SByte) |
숫자의 문자열 표현을 해당하는 SByte 변환하려고 시도하고 변환이 성공했는지 여부를 나타내는 값을 반환합니다. |
TryParse(ReadOnlySpan<Char>, IFormatProvider, SByte) |
문자 범위를 값으로 구문 분석하려고 시도합니다. |
TryParse(String, IFormatProvider, SByte) |
문자열을 값으로 구문 분석하려고 시도합니다. |
TryParse(ReadOnlySpan<Byte>, NumberStyles, IFormatProvider, SByte) |
UTF-8 문자의 범위를 값으로 구문 분석하려고 시도합니다. |
TryParse(ReadOnlySpan<Byte>, SByte) |
숫자의 문자열 표현을 포함하는 UTF-8 문자 범위를 해당하는 8비트 부호 있는 정수로 변환하려고 시도합니다. |
TryParse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider, SByte) |
지정된 스타일 및 문화권별 형식의 숫자 범위 표현을 해당하는 SByte 변환에 성공했는지 여부를 나타내는 값을 반환합니다. |
TryParse(String, NumberStyles, IFormatProvider, SByte) |
지정된 스타일 및 문화권별 형식의 숫자 문자열 표현을 해당하는 SByte 변환에 성공했는지 여부를 나타내는 값을 반환합니다. |
TryParse(ReadOnlySpan<Byte>, IFormatProvider, SByte)
- Source:
- SByte.cs
- Source:
- SByte.cs
UTF-8 문자의 범위를 값으로 구문 분석하려고 시도합니다.
public:
static bool TryParse(ReadOnlySpan<System::Byte> utf8Text, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::SByte % result) = IUtf8SpanParsable<System::SByte>::TryParse;
public static bool TryParse (ReadOnlySpan<byte> utf8Text, IFormatProvider? provider, out sbyte result);
static member TryParse : ReadOnlySpan<byte> * IFormatProvider * sbyte -> bool
Public Shared Function TryParse (utf8Text As ReadOnlySpan(Of Byte), provider As IFormatProvider, ByRef result As SByte) As Boolean
매개 변수
- utf8Text
- ReadOnlySpan<Byte>
구문 분석할 UTF-8 문자의 범위입니다.
- provider
- IFormatProvider
utf8Text
대한 문화권별 서식 정보를 제공하는 개체입니다.
- result
- SByte
반환되는 경우 utf8Text
성공적으로 구문 분석한 결과 또는 실패에 대해 정의되지 않은 값이 포함됩니다.
반환
utf8Text
성공적으로 구문 분석되었는지 true
. 그렇지 않으면 false
.
적용 대상
TryParse(ReadOnlySpan<Char>, SByte)
- Source:
- SByte.cs
- Source:
- SByte.cs
- Source:
- SByte.cs
중요
이 API는 CLS 규격이 아닙니다.
숫자의 범위 표현을 해당하는 SByte 변환하려고 시도하고 변환이 성공했는지 여부를 나타내는 값을 반환합니다.
public:
static bool TryParse(ReadOnlySpan<char> s, [Runtime::InteropServices::Out] System::SByte % result);
public static bool TryParse (ReadOnlySpan<char> s, out sbyte result);
[System.CLSCompliant(false)]
public static bool TryParse (ReadOnlySpan<char> s, out sbyte result);
static member TryParse : ReadOnlySpan<char> * sbyte -> bool
[<System.CLSCompliant(false)>]
static member TryParse : ReadOnlySpan<char> * sbyte -> bool
Public Shared Function TryParse (s As ReadOnlySpan(Of Char), ByRef result As SByte) As Boolean
매개 변수
- s
- ReadOnlySpan<Char>
변환할 숫자를 나타내는 문자가 들어 있는 범위입니다.
- result
- SByte
이 메서드가 반환될 때 변환에 성공한 경우 s
포함된 숫자와 동일한 부호 있는 8비트 정수 값이나 변환에 실패한 경우 0이 포함됩니다. result
제공된 모든 값을 덮어씁니다.
반환
s
성공적으로 변환되었는지 true
. 그렇지 않으면 false
.
- 특성
적용 대상
TryParse(String, SByte)
- Source:
- SByte.cs
- Source:
- SByte.cs
- Source:
- SByte.cs
중요
이 API는 CLS 규격이 아닙니다.
숫자의 문자열 표현을 해당하는 SByte 변환하려고 시도하고 변환이 성공했는지 여부를 나타내는 값을 반환합니다.
public:
static bool TryParse(System::String ^ s, [Runtime::InteropServices::Out] System::SByte % result);
[System.CLSCompliant(false)]
public static bool TryParse (string s, out sbyte result);
public static bool TryParse (string? s, out sbyte result);
[System.CLSCompliant(false)]
public static bool TryParse (string? s, out sbyte result);
[<System.CLSCompliant(false)>]
static member TryParse : string * sbyte -> bool
static member TryParse : string * sbyte -> bool
Public Shared Function TryParse (s As String, ByRef result As SByte) As Boolean
매개 변수
- s
- String
변환할 숫자가 들어 있는 문자열입니다.
- result
- SByte
이 메서드가 반환될 때 변환에 성공한 경우 s
포함된 숫자와 동일한 부호 있는 8비트 정수 값이나 변환에 실패한 경우 0이 포함됩니다. result
제공된 모든 값을 덮어씁니다.
반환
s
성공적으로 변환되었는지 true
. 그렇지 않으면 false
.
- 특성
예제
다음 예제에서는 TryParse(String, SByte) 메서드를 호출하여 배열의 문자열을 SByte 값으로 변환하려고 시도합니다.
string[] numericStrings = {"-3.6", "12.8", "+16.7", " 3 ", "(17)",
"-17", "+12", "18-", "987", "1,024", " 127 "};
sbyte number;
foreach (string numericString in numericStrings)
{
if (sbyte.TryParse(numericString, out number))
Console.WriteLine("Converted '{0}' to {1}.", numericString, number);
else
Console.WriteLine("Cannot convert '{0}' to an SByte.", numericString);
}
// The example displays the following output to the console:
// Cannot convert '-3.6' to an SByte.
// Cannot convert '12.8' to an SByte.
// Cannot convert '+16.7' to an SByte.
// Converted ' 3 ' to 3.
// Cannot convert '(17)' to an SByte.
// Converted '-17' to -17.
// Converted '+12' to 12.
// Cannot convert '18-' to an SByte.
// Cannot convert '987' to an SByte.
// Cannot convert '1,024' to an SByte.
// Converted ' 127 ' to 127.
open System
let numericStrings =
[| "-3.6"; "12.8"; "+16.7"; " 3 "; "(17)"
"-17"; "+12"; "18-"; "987"; "1,024"; " 127 " |]
for numericString in numericStrings do
match SByte.TryParse numericString with
| true, number ->
printfn $"Converted '{numericString}' to {number}."
| _ ->
printfn $"Cannot convert '{numericString}' to an SByte."
// The example displays the following output to the console:
// Cannot convert '-3.6' to an SByte.
// Cannot convert '12.8' to an SByte.
// Cannot convert '+16.7' to an SByte.
// Converted ' 3 ' to 3.
// Cannot convert '(17)' to an SByte.
// Converted '-17' to -17.
// Converted '+12' to 12.
// Cannot convert '18-' to an SByte.
// Cannot convert '987' to an SByte.
// Cannot convert '1,024' to an SByte.
// Converted ' 127 ' to 127.
Dim numericStrings() As String = {"-3.6", "12.8", "+16.7", " 3 ", _
"(17)", "-17", "+12", "18-", "987", _
"1,024", " 127 "}
Dim number As SByte
For Each numericString As String In numericStrings
If SByte.TryParse(numericString, number) Then
Console.WriteLine("Converted '{0}' to {1}.", numericString, number)
Else
Console.WriteLine("Cannot convert '{0}' to an SByte.", numericString)
End If
Next
' The example displays the following output to the console:
' Cannot convert '-3.6' to an SByte.
' Cannot convert '12.8' to an SByte.
' Cannot convert '+16.7' to an SByte.
' Converted ' 3 ' to 3.
' Cannot convert '(17)' to an SByte.
' Converted '-17' to -17.
' Converted '+12' to 12.
' Cannot convert '18-' to an SByte.
' Cannot convert '987' to an SByte.
' Cannot convert '1,024' to an SByte.
' Converted ' 127 ' to 127.
설명
SByte.TryParse(String, SByte) 메서드는 변환이 실패할 경우 예외를 throw하지 않는다는 점을 제외하고 SByte.Parse(String) 메서드와 같습니다. 이 메서드는 value
유효하지 않고 성공적으로 구문 분석할 수 없는 경우 예외 처리를 사용하여 FormatException 테스트할 필요가 없습니다.
s
매개 변수는 다음 형식의 10진수 문자열 표현이어야 합니다.
[ws] [sign]digits[ws]
대괄호([ 및 ])의 요소는 선택 사항입니다. 다음 표에서는 각 요소에 대해 설명합니다.
요소 | 묘사 |
---|---|
ws |
선택적 공백입니다. |
기호 | 선택적 기호입니다. 유효한 부호 문자는 현재 문화권의 NumberFormatInfo.NegativeSign 및 NumberFormatInfo.PositiveSign 속성에 의해 결정됩니다. |
숫자 | 0에서 9 사이의 소수 자릿수 시퀀스입니다. |
메모
value
매개 변수로 지정된 문자열에는 그룹 구분 기호 또는 소수 구분 기호를 포함할 수 없으며 소수 부분을 가질 수 없습니다.
s
매개 변수는 NumberStyles.Integer 스타일을 사용하여 해석됩니다. 소수 자릿수 외에도 선행 기호가 있는 선행 및 후행 공백만 허용됩니다.
value
있을 수 있는 문화권별 서식 정보를 사용하여 스타일 요소를 명시적으로 정의하려면 TryParse(String, NumberStyles, IFormatProvider, SByte) 메서드를 호출합니다.
s
매개 변수는 현재 문화권에 대한 NumberFormatInfo 개체의 서식 지정 정보를 사용하여 구문 분석됩니다. 자세한 내용은 NumberFormatInfo.CurrentInfo참조하세요.
이 오버로드는 value
매개 변수의 모든 숫자를 10진수로 해석합니다. 16진수의 문자열 표현을 구문 분석하려면 대신 TryParse(String, NumberStyles, IFormatProvider, SByte) 오버로드를 호출합니다.
추가 정보
적용 대상
TryParse(ReadOnlySpan<Char>, IFormatProvider, SByte)
- Source:
- SByte.cs
- Source:
- SByte.cs
- Source:
- SByte.cs
문자 범위를 값으로 구문 분석하려고 시도합니다.
public:
static bool TryParse(ReadOnlySpan<char> s, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::SByte % result) = ISpanParsable<System::SByte>::TryParse;
public static bool TryParse (ReadOnlySpan<char> s, IFormatProvider? provider, out sbyte result);
static member TryParse : ReadOnlySpan<char> * IFormatProvider * sbyte -> bool
Public Shared Function TryParse (s As ReadOnlySpan(Of Char), provider As IFormatProvider, ByRef result As SByte) As Boolean
매개 변수
- s
- ReadOnlySpan<Char>
구문 분석할 문자의 범위입니다.
- provider
- IFormatProvider
s
대한 문화권별 서식 정보를 제공하는 개체입니다.
- result
- SByte
이 메서드가 반환될 때 s
성공적으로 구문 분석한 결과 또는 실패 시 정의되지 않은 값이 포함됩니다.
반환
s
성공적으로 구문 분석되었는지 true
. 그렇지 않으면 false
.
적용 대상
TryParse(String, IFormatProvider, SByte)
- Source:
- SByte.cs
- Source:
- SByte.cs
- Source:
- SByte.cs
문자열을 값으로 구문 분석하려고 시도합니다.
public:
static bool TryParse(System::String ^ s, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::SByte % result) = IParsable<System::SByte>::TryParse;
public static bool TryParse (string? s, IFormatProvider? provider, out sbyte result);
static member TryParse : string * IFormatProvider * sbyte -> bool
Public Shared Function TryParse (s As String, provider As IFormatProvider, ByRef result As SByte) As Boolean
매개 변수
- s
- String
구문 분석할 문자열입니다.
- provider
- IFormatProvider
s
대한 문화권별 서식 정보를 제공하는 개체입니다.
- result
- SByte
이 메서드가 반환될 때 실패 시 s
성공적으로 구문 분석한 결과 또는 정의되지 않은 값이 포함됩니다.
반환
s
성공적으로 구문 분석되었는지 true
. 그렇지 않으면 false
.
적용 대상
TryParse(ReadOnlySpan<Byte>, NumberStyles, IFormatProvider, SByte)
- Source:
- SByte.cs
- Source:
- SByte.cs
UTF-8 문자의 범위를 값으로 구문 분석하려고 시도합니다.
public:
static bool TryParse(ReadOnlySpan<System::Byte> utf8Text, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::SByte % result) = System::Numerics::INumberBase<System::SByte>::TryParse;
public static bool TryParse (ReadOnlySpan<byte> utf8Text, System.Globalization.NumberStyles style, IFormatProvider? provider, out sbyte result);
static member TryParse : ReadOnlySpan<byte> * System.Globalization.NumberStyles * IFormatProvider * sbyte -> bool
Public Shared Function TryParse (utf8Text As ReadOnlySpan(Of Byte), style As NumberStyles, provider As IFormatProvider, ByRef result As SByte) As Boolean
매개 변수
- utf8Text
- ReadOnlySpan<Byte>
구문 분석할 UTF-8 문자의 범위입니다.
- style
- NumberStyles
utf8Text
있을 수 있는 숫자 스타일의 비트 조합입니다.
- provider
- IFormatProvider
utf8Text
대한 문화권별 서식 정보를 제공하는 개체입니다.
- result
- SByte
반환되는 경우 utf8Text
성공적으로 구문 분석한 결과 또는 실패에 대해 정의되지 않은 값이 포함됩니다.
반환
utf8Text
성공적으로 구문 분석되었는지 true
. 그렇지 않으면 false
.
적용 대상
TryParse(ReadOnlySpan<Byte>, SByte)
- Source:
- SByte.cs
- Source:
- SByte.cs
숫자의 문자열 표현을 포함하는 UTF-8 문자 범위를 해당하는 8비트 부호 있는 정수로 변환하려고 시도합니다.
public:
static bool TryParse(ReadOnlySpan<System::Byte> utf8Text, [Runtime::InteropServices::Out] System::SByte % result);
public static bool TryParse (ReadOnlySpan<byte> utf8Text, out sbyte result);
static member TryParse : ReadOnlySpan<byte> * sbyte -> bool
Public Shared Function TryParse (utf8Text As ReadOnlySpan(Of Byte), ByRef result As SByte) As Boolean
매개 변수
- utf8Text
- ReadOnlySpan<Byte>
변환할 숫자를 나타내는 UTF-8 문자를 포함하는 범위입니다.
- result
- SByte
이 메서드가 반환될 때 변환에 성공한 경우 utf8Text
포함된 수에 해당하는 부호 있는 8비트 정수 값이나 변환에 실패한 경우 0이 포함됩니다. 이 매개 변수는 초기화되지 않은 상태로 전달됩니다. 결과에서 원래 제공된 모든 값을 덮어씁니다.
반환
utf8Text
성공적으로 변환되었는지 true
. 그렇지 않으면 false
.
적용 대상
TryParse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider, SByte)
- Source:
- SByte.cs
- Source:
- SByte.cs
- Source:
- SByte.cs
중요
이 API는 CLS 규격이 아닙니다.
지정된 스타일 및 문화권별 형식의 숫자 범위 표현을 해당하는 SByte 변환에 성공했는지 여부를 나타내는 값을 반환합니다.
public:
static bool TryParse(ReadOnlySpan<char> s, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::SByte % result);
public:
static bool TryParse(ReadOnlySpan<char> s, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::SByte % result) = System::Numerics::INumberBase<System::SByte>::TryParse;
public static bool TryParse (ReadOnlySpan<char> s, System.Globalization.NumberStyles style, IFormatProvider? provider, out sbyte result);
[System.CLSCompliant(false)]
public static bool TryParse (ReadOnlySpan<char> s, System.Globalization.NumberStyles style, IFormatProvider provider, out sbyte result);
[System.CLSCompliant(false)]
public static bool TryParse (ReadOnlySpan<char> s, System.Globalization.NumberStyles style, IFormatProvider? provider, out sbyte result);
static member TryParse : ReadOnlySpan<char> * System.Globalization.NumberStyles * IFormatProvider * sbyte -> bool
[<System.CLSCompliant(false)>]
static member TryParse : ReadOnlySpan<char> * System.Globalization.NumberStyles * IFormatProvider * sbyte -> bool
Public Shared Function TryParse (s As ReadOnlySpan(Of Char), style As NumberStyles, provider As IFormatProvider, ByRef result As SByte) As Boolean
매개 변수
- s
- ReadOnlySpan<Char>
변환할 숫자를 나타내는 문자가 들어 있는 범위입니다.
- style
- NumberStyles
허용되는 s
형식을 나타내는 열거형 값의 비트 조합입니다. 지정하는 일반적인 값은 Integer.
- provider
- IFormatProvider
s
대한 문화권별 서식 정보를 제공하는 개체입니다.
- result
- SByte
이 메서드가 반환될 때 변환에 성공한 경우 s
포함된 수에 해당하는 부호 있는 8비트 정수 값을 포함하거나 변환에 실패한 경우 0을 포함합니다.
s
매개 변수가 null
또는 Empty, style
호환되는 형식이 아니거나, SByte.MinValue보다 작거나 SByte.MaxValue보다 큰 숫자를 나타내는 경우 변환이 실패합니다. 이 매개 변수는 초기화되지 않은 상태로 전달됩니다. 원래 result
제공된 모든 값을 덮어씁니다.
반환
s
성공적으로 변환되었는지 true
. 그렇지 않으면 false
.
- 특성
적용 대상
TryParse(String, NumberStyles, IFormatProvider, SByte)
- Source:
- SByte.cs
- Source:
- SByte.cs
- Source:
- SByte.cs
지정된 스타일 및 문화권별 형식의 숫자 문자열 표현을 해당하는 SByte 변환에 성공했는지 여부를 나타내는 값을 반환합니다.
public:
static bool TryParse(System::String ^ s, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::SByte % result);
public:
static bool TryParse(System::String ^ s, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] System::SByte % result) = System::Numerics::INumberBase<System::SByte>::TryParse;
[System.CLSCompliant(false)]
public static bool TryParse (string s, System.Globalization.NumberStyles style, IFormatProvider provider, out sbyte result);
public static bool TryParse (string? s, System.Globalization.NumberStyles style, IFormatProvider? provider, out sbyte result);
[System.CLSCompliant(false)]
public static bool TryParse (string? s, System.Globalization.NumberStyles style, IFormatProvider? provider, out sbyte result);
[<System.CLSCompliant(false)>]
static member TryParse : string * System.Globalization.NumberStyles * IFormatProvider * sbyte -> bool
static member TryParse : string * System.Globalization.NumberStyles * IFormatProvider * sbyte -> bool
Public Shared Function TryParse (s As String, style As NumberStyles, provider As IFormatProvider, ByRef result As SByte) As Boolean
매개 변수
- s
- String
변환할 숫자를 나타내는 문자열입니다.
- style
- NumberStyles
허용되는 s
형식을 나타내는 열거형 값의 비트 조합입니다. 지정하는 일반적인 값은 Integer.
- provider
- IFormatProvider
s
대한 문화권별 서식 정보를 제공하는 개체입니다.
- result
- SByte
이 메서드가 반환될 때 변환에 성공한 경우 s
포함된 수에 해당하는 부호 있는 8비트 정수 값을 포함하거나 변환에 실패한 경우 0을 포함합니다.
s
매개 변수가 null
또는 Empty, style
호환되는 형식이 아니거나, SByte.MinValue보다 작거나 SByte.MaxValue보다 큰 숫자를 나타내는 경우 변환이 실패합니다. 이 매개 변수는 초기화되지 않은 상태로 전달됩니다. 원래 result
제공된 모든 값을 덮어씁니다.
반환
s
성공적으로 변환되었는지 true
. 그렇지 않으면 false
.
- 특성
예외
예제
다음 예제에서는 다양한 문자열과 NumberStyles 값을 사용하여 TryParse(String, NumberStyles, IFormatProvider, SByte) 메서드를 호출합니다.
using System;
using System.Globalization;
public class Example
{
public static void Main()
{
string numericString;
NumberStyles styles;
numericString = "106";
styles = NumberStyles.Integer;
CallTryParse(numericString, styles);
numericString = "-106";
styles = NumberStyles.None;
CallTryParse(numericString, styles);
numericString = "103.00";
styles = NumberStyles.Integer | NumberStyles.AllowDecimalPoint;
CallTryParse(numericString, styles);
numericString = "103.72";
styles = NumberStyles.Integer | NumberStyles.AllowDecimalPoint;
CallTryParse(numericString, styles);
numericString = "10E-01";
styles = NumberStyles.Integer | NumberStyles.AllowExponent;
CallTryParse(numericString, styles);
numericString = "12E-01";
CallTryParse(numericString, styles);
numericString = "12E01";
CallTryParse(numericString, styles);
numericString = "C8";
CallTryParse(numericString, NumberStyles.HexNumber);
numericString = "0x8C";
CallTryParse(numericString, NumberStyles.HexNumber);
}
private static void CallTryParse(string stringToConvert, NumberStyles styles)
{
sbyte number;
bool result = SByte.TryParse(stringToConvert, styles,
CultureInfo.InvariantCulture, out number);
if (result)
Console.WriteLine($"Converted '{stringToConvert}' to {number}.");
else
Console.WriteLine($"Attempted conversion of '{stringToConvert}' failed.");
}
}
// The example displays the following output:
// Converted '106' to 106.
// Attempted conversion of '-106' failed.
// Converted '103.00' to 103.
// Attempted conversion of '103.72' failed.
// Converted '10E-01' to 1.
// Attempted conversion of '12E-01' failed.
// Converted '12E01' to 120.
// Converted 'C8' to -56.
// Attempted conversion of '0x8C' failed.
open System
open System.Globalization
let callTryParse (stringToConvert: string) styles =
match SByte.TryParse(stringToConvert, styles, CultureInfo.InvariantCulture) with
| true, number ->
printfn $"Converted '{stringToConvert}' to {number}."
| _ ->
printfn $"Attempted conversion of '{stringToConvert}' failed."
[<EntryPoint>]
let main _ =
let numericString = "106"
let styles = NumberStyles.Integer
callTryParse numericString styles
let numericString = "-106"
let styles = NumberStyles.None
callTryParse numericString styles
let numericString = "103.00"
let styles = NumberStyles.Integer ||| NumberStyles.AllowDecimalPoint
callTryParse numericString styles
let numericString = "103.72"
let styles = NumberStyles.Integer ||| NumberStyles.AllowDecimalPoint
callTryParse numericString styles
let numericString = "10E-01"
let styles = NumberStyles.Integer ||| NumberStyles.AllowExponent
callTryParse numericString styles
let numericString = "12E-01"
callTryParse numericString styles
let numericString = "12E01"
callTryParse numericString styles
let numericString = "C8"
callTryParse numericString NumberStyles.HexNumber
let numericString = "0x8C"
callTryParse numericString NumberStyles.HexNumber
0
// The example displays the following output:
// Converted '106' to 106.
// Attempted conversion of '-106' failed.
// Converted '103.00' to 103.
// Attempted conversion of '103.72' failed.
// Converted '10E-01' to 1.
// Attempted conversion of '12E-01' failed.
// Converted '12E01' to 120.
// Converted 'C8' to -56.
// Attempted conversion of '0x8C' failed.
Imports System.Globalization
Module StringParsing
Public Sub Main()
Dim numericString As String
Dim styles As NumberStyles
numericString = "106"
styles = NumberStyles.Integer
CallTryParse(numericString, styles)
numericString = "-106"
styles = NumberStyles.None
CallTryParse(numericString, styles)
numericString = "103.00"
styles = NumberStyles.Integer Or NumberStyles.AllowDecimalPoint
CallTryParse(numericString, styles)
numericString = "103.72"
styles = NumberStyles.Integer Or NumberStyles.AllowDecimalPoint
CallTryParse(numericString, styles)
numericString = "10E-01"
styles = NumberStyles.Integer Or NumberStyles.AllowExponent
CallTryParse(numericString, styles)
numericString = "12E-01"
CallTryParse(numericString, styles)
numericString = "12E01"
CallTryParse(numericString, styles)
numericString = "C8"
CallTryParse(numericString, NumberStyles.HexNumber)
numericString = "0x8C"
CallTryParse(numericString, NumberStyles.HexNumber)
End Sub
Private Sub CallTryParse(stringToConvert As String, styles AS NumberStyles)
Dim number As SByte
Dim result As Boolean = SByte.TryParse(stringToConvert, styles, _
CultureInfo.InvariantCulture, number)
If result Then
Console.WriteLine("Converted '{0}' to {1}.", stringToConvert, number)
Else
Console.WriteLine("Attempted conversion of '{0}' failed.", _
Convert.ToString(stringToConvert))
End If
End Sub
End Module
' The example displays the following output to the console:
' Converted '106' to 106.
' Attempted conversion of '-106' failed.
' Converted '103.00' to 103.
' Attempted conversion of '103.72' failed.
' Converted '10E-01' to 1.
' Attempted conversion of '12E-01' failed.
' Converted '12E01' to 120.
' Converted 'C8' to -56.
' Attempted conversion of '0x8C' failed.
설명
TryParse(String, NumberStyles, IFormatProvider, SByte) 메서드는 변환이 실패할 경우 예외를 throw하지 않는다는 점을 제외하고 Parse(String, NumberStyles, IFormatProvider) 메서드와 같습니다. 이 메서드는 value
유효하지 않고 성공적으로 구문 분석할 수 없는 경우 예외 처리를 사용하여 FormatException 테스트할 필요가 없습니다.
style
매개 변수는 구문 분석 작업이 성공하기 위해 value
매개 변수에 허용되는 스타일 요소(예: 공백 또는 양수 또는 음수 기호)를 정의합니다.
NumberStyles 열거형의 비트 플래그 조합이어야 합니다.
style
값에 따라 value
매개 변수에는 다음 요소가 포함될 수 있습니다.
[ws] [$] [sign] [숫자,]숫자[.fractional_digits][E[기호]exponential_digits][ws]
style
매개 변수에 AllowHexSpecifier포함된 경우 value
매개 변수에는 다음 요소가 포함될 수 있습니다.
[ws]hexdigits[ws]
대괄호([ 및 ])의 요소는 선택 사항입니다. 다음 표에서는 각 요소에 대해 설명합니다.
요소 | 묘사 |
---|---|
ws |
선택적 공백입니다.
style
NumberStyles.AllowLeadingWhite 플래그를 포함하는 경우 value 시작 부분에 공백을 표시하거나 style NumberStyles.AllowTrailingWhite 플래그를 포함하는 경우 value 끝에 나타날 수 있습니다. |
$ | 문화권별 통화 기호입니다. 문자열의 위치는 provider 매개 변수의 GetFormat 메서드에서 반환된 NumberFormatInfo 개체의 CurrencyPositivePattern 속성에 의해 정의됩니다.
style
NumberStyles.AllowCurrencySymbol 플래그를 포함하는 경우 통화 기호가 value 나타날 수 있습니다. |
기호 | 선택적 기호입니다.
style
NumberStyles.AllowLeadingSign 플래그를 포함하는 경우 value 시작 부분에 표시할 수 있으며, style NumberStyles.AllowTrailingSign 플래그를 포함하는 경우 value 끝에 표시할 수 있습니다.
style
NumberStyles.AllowParentheses 플래그를 포함하는 경우 value 괄호를 사용하여 음수 값을 나타낼 수 있습니다. |
숫자 | 0에서 9까지의 숫자 시퀀스입니다. |
, | 문화권별 그룹 구분 기호입니다.
style
NumberStyles.AllowThousands 플래그를 포함하는 경우 provider 지정된 문화권의 그룹 구분 기호가 value 나타날 수 있습니다. |
. | 문화권별 소수점 기호입니다.
style
NumberStyles.AllowDecimalPoint 플래그를 포함하는 경우 provider 지정된 문화권의 소수점 기호가 value 나타날 수 있습니다. |
fractional_digits | 숫자 0이 하나 이상 발생합니다. 소수 자릿수는 style NumberStyles.AllowDecimalPoint 플래그를 포함하는 경우에만 value 나타날 수 있습니다. |
E | 값이 지수(과학적) 표기법으로 표현됨을 나타내는 "e" 또는 "E" 문자입니다.
value 매개 변수는 style NumberStyles.AllowExponent 플래그를 포함하는 경우 지수 표기법으로 숫자를 나타낼 수 있습니다. |
exponential_digits | 0에서 9까지의 숫자 시퀀스입니다.
value 매개 변수는 style NumberStyles.AllowExponent 플래그를 포함하는 경우 지수 표기법으로 숫자를 나타낼 수 있습니다. |
16진수 | 0부터 f까지의 16진수 숫자 또는 0부터 F까지의 시퀀스입니다. |
메모
s
종결 NUL(U+0000) 문자는 style
인수의 값에 관계없이 구문 분석 작업에서 무시됩니다.
소수 자릿수만 있는 문자열(NumberStyles.None 플래그에 해당)은 항상 성공적으로 구문 분석됩니다. 나머지 NumberStyles 멤버 대부분은 이 입력 문자열에 존재할 수 있지만 존재할 필요는 없는 요소를 제어합니다. 다음 표에서는 개별 NumberStyles 멤버가 value
있을 수 있는 요소에 미치는 영향을 나타냅니다.
비 복합 NumberStyles 값 |
숫자 외에도 값에 허용되는 요소 |
---|---|
None | 10진수에만 해당합니다. |
AllowDecimalPoint | 소수점(.) 및 fractional_digits 요소입니다. 그러나 fractional_digits 하나 이상의 0자리 숫자로만 구성되거나 메서드가 false 반환해야 합니다. |
AllowExponent |
exponential_digits함께 지수 표기법을 나타내는 "e" 또는 "E" 문자입니다.
value 지수 표기법의 숫자를 나타내는 경우 0이 아닌 소수 구성 요소를 가질 수 없습니다. |
AllowLeadingWhite |
value 시작할 때 ws 요소입니다. |
AllowTrailingWhite |
value 끝에 있는 ws 요소입니다. |
AllowLeadingSign | 숫자앞에 있는 기호 요소입니다. |
AllowTrailingSign | 숫자후 기호 요소입니다. |
AllowParentheses | 숫자 값을 둘러싸는 괄호 형식의 기호 요소입니다. |
AllowThousands | 그룹 구분 기호(,) 요소입니다. |
AllowCurrencySymbol | currency($) 요소입니다. |
Currency | 모든 요소. 그러나 value 16진수 또는 지수 표기법의 숫자를 나타낼 수 없습니다. |
Float | value 매개 변수는 지수 표기법을 사용할 수도 있습니다. |
Number | ws, 기호, 그룹 구분 기호(,), 소수점(.) 요소입니다. |
Any | 모든 요소. 그러나 value 16진수를 나타낼 수 없습니다. |
NumberStyles.AllowHexSpecifier 플래그를 사용하는 경우 value
16진수 값이어야 합니다. 유효한 16진수는 0-9, a-f 및 A-F입니다.
style
있을 수 있는 유일한 다른 플래그는 NumberStyles.AllowLeadingWhite 및 NumberStyles.AllowTrailingWhite. (NumberStyles 열거형에는 공백 플래그를 모두 포함하는 복합 스타일(HexNumber)이 있습니다.
메모
value
16진수의 문자열 표현인 경우 16진수로 구분하는 장식(예: 0x
또는 &h
)이 앞에 올 수 없습니다. 이렇게 하면 변환이 실패합니다.
provider
매개 변수는 IFormatProvider 구현입니다. 해당 GetFormat 메서드는 value
형식에 대한 문화권별 정보를 제공하는 NumberFormatInfo 개체를 반환합니다.
provider
매개 변수는 다음 중 하나일 수 있습니다.
서식 정보를 제공하는 문화권을 나타내는 CultureInfo 개체입니다. 해당 GetFormat 메서드는 해당 문화권에 대한 숫자 서식 정보를 제공하는 NumberFormatInfo 개체를 반환합니다.
숫자 서식 정보를 제공하는 NumberFormatInfo 개체입니다. (GetFormat 구현은 그 자체를 반환합니다.)
IFormatProvider구현하는 사용자 지정 개체입니다. 해당 GetFormat 메서드는 서식 정보를 제공하는 NumberFormatInfo 개체를 인스턴스화하고 반환합니다.
provider
null
경우 현재 문화권의 NumberFormatInfo 개체가 사용됩니다.
추가 정보
- Parse(String, NumberStyles, IFormatProvider)
- .NET 숫자 문자열 구문 분석
적용 대상
.NET