Boolean.TryParse 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
TryParse(ReadOnlySpan<Char>, Boolean) |
嘗試將代表邏輯值的指定範圍轉換為對等 Boolean。 |
TryParse(String, Boolean) |
嘗試將指定之邏輯值的字串表示轉換成對等的 Boolean。 |
TryParse(ReadOnlySpan<Char>, Boolean)
- 來源:
- Boolean.cs
- 來源:
- Boolean.cs
- 來源:
- Boolean.cs
嘗試將代表邏輯值的指定範圍轉換為對等 Boolean。
public:
static bool TryParse(ReadOnlySpan<char> value, [Runtime::InteropServices::Out] bool % result);
public static bool TryParse (ReadOnlySpan<char> value, out bool result);
static member TryParse : ReadOnlySpan<char> * bool -> bool
Public Shared Function TryParse (value As ReadOnlySpan(Of Char), ByRef result As Boolean) As Boolean
參數
- value
- ReadOnlySpan<Char>
範圍,其包含代表所要轉換值的字元。
- result
- Boolean
當這個方法傳回時,如果轉換成功,則會在 true
等於 value
時包含 TrueString,或在 false
等於 value
時包含 FalseString。 如果轉換失敗,則包含 false
。 如果 value
為 null
,或者不等於 TrueString 或 FalseString 欄位的值,則轉換失敗。
傳回
如果 value
轉換成功,則為 true
,否則為 false
。
適用於
TryParse(String, Boolean)
- 來源:
- Boolean.cs
- 來源:
- Boolean.cs
- 來源:
- Boolean.cs
嘗試將指定之邏輯值的字串表示轉換成對等的 Boolean。
public:
static bool TryParse(System::String ^ value, [Runtime::InteropServices::Out] bool % result);
public static bool TryParse (string value, out bool result);
public static bool TryParse (string? value, out bool result);
static member TryParse : string * bool -> bool
Public Shared Function TryParse (value As String, ByRef result As Boolean) As Boolean
參數
- value
- String
字串,包含要轉換的值。
- result
- Boolean
當這個方法傳回時,如果轉換成功,則會在 true
等於 value
時包含 TrueString,或在 false
等於 value
時包含 FalseString。 如果轉換失敗,則包含 false
。 如果 value
為 null
,或者不等於 TrueString 或 FalseString 欄位的值,則轉換失敗。
傳回
如果 value
轉換成功,則為 true
,否則為 false
。
範例
下列範例會 TryParse 呼叫 方法來剖析字串陣列。 請注意,只有在要剖析的字串為 「True」 時,剖析作業才會成功, (欄位的值 TrueString) 或 「False」 (不區分大小寫的比較中,欄位的值 FalseString) 。
using System;
public class Example
{
public static void Main()
{
string[] values = { null, String.Empty, "True", "False",
"true", "false", " true ", "0",
"1", "-1", "string" };
foreach (var value in values) {
bool flag;
if (Boolean.TryParse(value, out flag))
Console.WriteLine("'{0}' --> {1}", value, flag);
else
Console.WriteLine("Unable to parse '{0}'.",
value == null ? "<null>" : value);
}
}
}
// The example displays the following output:
// Unable to parse '<null>'.
// Unable to parse ''.
// 'True' --> True
// 'False' --> False
// 'true' --> True
// 'false' --> False
// ' true ' --> True
// Unable to parse '0'.
// Unable to parse '1'.
// Unable to parse '-1'.
// Unable to parse 'string'.
open System
let values =
[ null; String.Empty; "True"; "False"
"true"; "false"; " true "; "0"
"1"; "-1"; "string" ]
for value in values do
match Boolean.TryParse value with
| true, flag ->
printfn $"'{value}' --> {flag}"
| false, _ ->
printfn $"""Unable to parse '%s{if value = null then "<null>" else value}'."""
// The example displays the following output:
// Unable to parse '<null>'.
// Unable to parse ''.
// 'True' --> True
// 'False' --> False
// 'true' --> True
// 'false' --> False
// ' true ' --> True
// Unable to parse '0'.
// Unable to parse '1'.
// Unable to parse '-1'.
// Unable to parse 'string'.
Module Example
Public Sub Main()
Dim values() As String = { Nothing, String.Empty, "True", "False",
"true", "false", " true ", "0",
"1", "-1", "string" }
For Each value In values
Dim flag As Boolean
If Boolean.TryParse(value, flag) Then
Console.WriteLine("'{0}' --> {1}", value, flag)
Else
Console.WriteLine("Unable to parse '{0}'.",
If(value Is Nothing, "<null>", value))
End If
Next
End Sub
End Module
' The example displays the following output:
' Unable to parse '<null>'.
' Unable to parse ''.
' 'True' --> True
' 'False' --> False
' 'true' --> True
' 'false' --> False
' ' true ' --> True
' Unable to parse '0'.
' Unable to parse '1'.
' Unable to parse '-1'.
' Unable to parse 'string'.
備註
方法 TryParse 就像 Parse 方法一樣,但 TryParse 方法不會在轉換失敗時擲回例外狀況。
參數 value
可以前面或後面加上空白字元。 比較不區分序數且不區分大小寫。