Guid.ParseExact 方法

定義

多載

ParseExact(ReadOnlySpan<Char>, ReadOnlySpan<Char>)

將 GUID 的字元範圍表示轉換為對等的 Guid 結構,但字串必須是指定的格式。

ParseExact(String, String)

將 GUID 的字串表示轉換為對等的 Guid 結構,但字串必須是指定的格式。

ParseExact(ReadOnlySpan<Char>, ReadOnlySpan<Char>)

來源:
Guid.cs
來源:
Guid.cs
來源:
Guid.cs

將 GUID 的字元範圍表示轉換為對等的 Guid 結構,但字串必須是指定的格式。

public:
 static Guid ParseExact(ReadOnlySpan<char> input, ReadOnlySpan<char> format);
public static Guid ParseExact (ReadOnlySpan<char> input, ReadOnlySpan<char> format);
static member ParseExact : ReadOnlySpan<char> * ReadOnlySpan<char> -> Guid
Public Shared Function ParseExact (input As ReadOnlySpan(Of Char), format As ReadOnlySpan(Of Char)) As Guid

參數

input
ReadOnlySpan<Char>

包含代表要轉換之 GUID 之位元組的唯讀範圍。

format
ReadOnlySpan<Char>

代表下列其中一個規範的唯讀字元範圍,表示解譯 input 時要使用的確切格式:「N」、「D」、「B」、「P」或 「X」。

傳回

包含所剖析之值的結構。

備註

方法 ParseExact 需要唯讀字元範圍,才能在移除開頭和尾端空白字元之後,以參數指定的 format 格式完全轉換。 下表顯示 參數的已接受格式規範 format 。 「0」 代表數位;連字號 (「-」) 、大括弧 (「{」、「}」) 和括弧 (「 (」、「) 」) 如下所示。

規範 input參數的格式
N 32 個十六進位數位:

00000000000000000000000000000000
D 以連字號分隔的 32 個十六進位數位:

00000000-0000-0000-0000-000000000000
B 以連字號分隔的 32 個十六進位數位,以大括弧括住:

{00000000-0000-0000-0000-000000000000}
P 以連字號分隔的 32 個十六進位數位,以括弧括住:

(00000000-0000-0000-0000-000000000000)
X 四個以大括弧括住的十六進位值,其中第四個值是八個十六進位值的子集,也以大括弧括住:

{0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}

適用於

ParseExact(String, String)

來源:
Guid.cs
來源:
Guid.cs
來源:
Guid.cs

將 GUID 的字串表示轉換為對等的 Guid 結構,但字串必須是指定的格式。

public:
 static Guid ParseExact(System::String ^ input, System::String ^ format);
public static Guid ParseExact (string input, string format);
static member ParseExact : string * string -> Guid
Public Shared Function ParseExact (input As String, format As String) As Guid

參數

input
String

要轉換的 GUID。

format
String

下列其中一個規範,表示在解譯 input 時要使用的確切格式:"N"、"D"、"B"、"P" 或 "X"。

傳回

包含所剖析之值的結構。

例外狀況

inputformatnull

input 不是 format 所指定的格式。

範例

下列範例會 ToString(String) 使用每個支援的格式規範呼叫 方法,以產生代表單一 GUID 的字串陣列。 這些接著會傳遞至 ParseExact 方法,其只會成功剖析符合 「B」 格式規範的字串。

// Define an array of all format specifiers.
string[] formats = { "N", "D", "B", "P", "X" };
Guid guid = Guid.NewGuid();
// Create an array of valid Guid string representations.
var stringGuids = new string[formats.Length];
for (int ctr = 0; ctr < formats.Length; ctr++)
    stringGuids[ctr] = guid.ToString(formats[ctr]);

// Parse the strings in the array using the "B" format specifier.
foreach (var stringGuid in stringGuids)
{
    try
    {
        Guid newGuid = Guid.ParseExact(stringGuid, "B");
        Console.WriteLine($"Successfully parsed {stringGuid}");
    }
    catch (ArgumentNullException)
    {
        Console.WriteLine("The string to be parsed is null.");
    }
    catch (FormatException)
    {
        Console.WriteLine($"Bad Format: {stringGuid}");
    }
}

// The example displays output similar to the following:
//
//    Bad Format: eb5c8c7d187a44e68afb81e854c39457
//    Bad Format: eb5c8c7d-187a-44e6-8afb-81e854c39457
//    Successfully parsed {eb5c8c7d-187a-44e6-8afb-81e854c39457}
//    Bad Format: (eb5c8c7d-187a-44e6-8afb-81e854c39457)
//    Bad Format: {0xeb5c8c7d,0x187a,0x44e6,{0x8a,0xfb,0x81,0xe8,0x54,0xc3,0x94,0x57}}
open System

// Define an array of all format specifiers.
let formats =
    [| "N"; "D"; "B"; "P"; "X" |]

let guid = Guid.NewGuid()

// Create an array of valid Guid string representations.
let stringGuids = 
    Array.map guid.ToString formats

// Parse the strings in the array using the "B" format specifier.
for stringGuid in stringGuids do
    try
        let newGuid = Guid.ParseExact(stringGuid, "B")
        printfn $"Successfully parsed {stringGuid}"
    with
    | :? ArgumentNullException ->
        printfn "The string to be parsed is null."
    | :? FormatException ->
        printfn $"Bad Format: {stringGuid}"

// The example displays output similar to the following:
//
//    Bad Format: eb5c8c7d187a44e68afb81e854c39457
//    Bad Format: eb5c8c7d-187a-44e6-8afb-81e854c39457
//    Successfully parsed {eb5c8c7d-187a-44e6-8afb-81e854c39457}
//    Bad Format: (eb5c8c7d-187a-44e6-8afb-81e854c39457)
//    Bad Format: {0xeb5c8c7d,0x187a,0x44e6,{0x8a,0xfb,0x81,0xe8,0x54,0xc3,0x94,0x57}}
Module Example
   Public Sub Main()
      ' Define an array of all format specifiers.
      Dim formats() As String = { "N", "D", "B", "P", "X" }
      Dim guid As Guid = Guid.NewGuid()
      ' Create an array of valid Guid string representations.
      Dim stringGuids(formats.Length - 1) As String
      For ctr As Integer = 0 To formats.Length - 1
         stringGuids(ctr) = guid.ToString(formats(ctr))
      Next

      ' Parse the strings in the array using the "B" format specifier.
      For Each stringGuid In stringGuids
         Try
            Dim newGuid As Guid = Guid.ParseExact(stringGuid, "B")
            Console.WriteLine("Successfully parsed {0}", stringGuid)
         Catch e As ArgumentNullException
            Console.WriteLine("The string to be parsed is null.")
         Catch e As FormatException
            Console.WriteLine("Bad Format: {0}", stringGuid)
         End Try   
      Next      
   End Sub
End Module
' The example displays the following output:
'    Bad Format: 3351d3f0006747089ff928b5179b2051
'    Bad Format: 3351d3f0-0067-4708-9ff9-28b5179b2051
'    Successfully parsed {3351d3f0-0067-4708-9ff9-28b5179b2051}
'    Bad Format: (3351d3f0-0067-4708-9ff9-28b5179b2051)
'    Bad Format: {0x3351d3f0,0x0067,0x4708,{0x9f,0xf9,0x28,0xb5,0x17,0x9b,0x20,0x51}}

備註

方法 ParseExact 要求字串在移除開頭和尾端空白字元之後,以參數指定的 format 格式完全轉換。 下表顯示 參數的已接受格式規範 format 。 「0」 代表數位;連字號 (「-」) 、大括弧 (「{」、「}」) 和括弧 (「 (」、「) 」) 如下所示。

規範 input參數的格式
N 32 個十六進位數位:

00000000000000000000000000000000
D 以連字號分隔的 32 個十六進位數位:

00000000-0000-0000-0000-000000000000
B 以連字號分隔的 32 個十六進位數位,以大括弧括住:

{00000000-0000-0000-0000-000000000000}
P 以連字號分隔的 32 個十六進位數位,以括弧括住:

(00000000-0000-0000-0000-000000000000)
X 四個以大括弧括住的十六進位值,其中第四個值是八個十六進位值的子集,也以大括弧括住:

{0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}}

另請參閱

適用於