StringSegment.IndexOfAny 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
IndexOfAny(Char[], Int32, Int32) |
報告這個實例中 Unicode 字元陣列中任何字元之第一個出現的以零起始的索引。 搜尋會從指定的字元位置開始,並檢查指定的字元位置數目。 |
IndexOfAny(Char[], Int32) |
報告這個實例中 Unicode 字元陣列中任何字元之第一個出現的以零起始的索引。 搜尋會從指定的字元位置開始。 |
IndexOfAny(Char[]) |
報告這個實例中 Unicode 字元陣列中任何字元之第一個出現的以零起始的索引。 |
IndexOfAny(Char[], Int32, Int32)
報告這個實例中 Unicode 字元陣列中任何字元之第一個出現的以零起始的索引。 搜尋會從指定的字元位置開始,並檢查指定的字元位置數目。
public:
int IndexOfAny(cli::array <char> ^ anyOf, int startIndex, int count);
public int IndexOfAny (char[] anyOf, int startIndex, int count);
member this.IndexOfAny : char[] * int * int -> int
Public Function IndexOfAny (anyOf As Char(), startIndex As Integer, count As Integer) As Integer
參數
- anyOf
- Char[]
Unicode 字元陣列,包含要搜尋的一或多個字元。
- startIndex
- Int32
搜尋起始位置。
- count
- Int32
要檢查的字元位置數目。
傳回
在此實例中,找到 anyOf
中任何字元之第一個出現的以零起始的索引位置;如果找不到 anyOf
中的字元,-1。
例外狀況
anyOf
null
。
startIndex
或 count
小於零,或 startIndex
+ count
大於 Length。
適用於
IndexOfAny(Char[], Int32)
報告這個實例中 Unicode 字元陣列中任何字元之第一個出現的以零起始的索引。 搜尋會從指定的字元位置開始。
public:
int IndexOfAny(cli::array <char> ^ anyOf, int startIndex);
public int IndexOfAny (char[] anyOf, int startIndex);
member this.IndexOfAny : char[] * int -> int
Public Function IndexOfAny (anyOf As Char(), startIndex As Integer) As Integer
參數
- anyOf
- Char[]
Unicode 字元陣列,包含要搜尋的一或多個字元。
- startIndex
- Int32
搜尋起始位置。
傳回
在此實例中,找到 anyOf
中任何字元之第一個出現的以零起始的索引位置;如果找不到 anyOf
中的字元,-1。
例外狀況
startIndex
大於或等於 Length 或小於零。
適用於
IndexOfAny(Char[])
報告這個實例中 Unicode 字元陣列中任何字元之第一個出現的以零起始的索引。
public:
int IndexOfAny(cli::array <char> ^ anyOf);
public int IndexOfAny (char[] anyOf);
member this.IndexOfAny : char[] -> int
Public Function IndexOfAny (anyOf As Char()) As Integer
參數
- anyOf
- Char[]
Unicode 字元陣列,包含要搜尋的一或多個字元。
傳回
在此實例中,找到 anyOf
中任何字元之第一個出現的以零起始的索引位置;如果找不到 anyOf
中的字元,-1。