Boolean.TryParse 方法

定义

重载

TryParse(ReadOnlySpan<Char>, Boolean)

尝试将逻辑值的指定范围表示形式转换为它的等效 Boolean

TryParse(String, Boolean)

尝试将逻辑值的指定字符串表示形式转换为其等效的 Boolean 值。

TryParse(ReadOnlySpan<Char>, Boolean)

Source:
Boolean.cs
Source:
Boolean.cs
Source:
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

此方法返回时,如果转换成功,若 truevalue 相等,则包含 TrueString,若 falsevalue 相等,则包含 FalseString。 如果转换失败,则包含 false。 如果 valuenull 或不等于 TrueStringFalseString 字段的值,则转换失败。

返回

如果 true 成功转换,则为 value;否则为 false

适用于

TryParse(String, Boolean)

Source:
Boolean.cs
Source:
Boolean.cs
Source:
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

此方法返回时,如果转换成功,若 truevalue 相等,则包含 TrueString,若 falsevalue 相等,则包含 FalseString。 如果转换失败,则包含 false。 如果 valuenull 或不等于 TrueStringFalseString 字段的值,则转换失败。

返回

如果 true 成功转换,则为 value;否则为 false

示例

以下示例调用 TryParse 方法以分析字符串数组。 请注意,仅当要分析的字符串为“True” (字段) 的值 TrueString 时,分析操作才会成功;在不区分大小写的比较中, (字段) 的值 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 的前面或后面可以有空格。 此比较不区分大小写,是序号的。

另请参阅

适用于