SqlFunctions.CharIndex 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回在一個運算式內找到之另一個運算式的起始位置。
多載
CharIndex(String, String, Nullable<Int64>) |
傳回在一個運算式內找到之另一個運算式的起始位置。 |
CharIndex(Byte[], Byte[], Nullable<Int64>) |
傳回在一個運算式內找到之另一個運算式的起始位置。 |
CharIndex(String, String, Nullable<Int32>) |
傳回在一個運算式內找到之另一個運算式的起始位置。 |
CharIndex(String, String) |
傳回在一個運算式內找到之另一個運算式的起始位置。 |
CharIndex(Byte[], Byte[]) |
傳回在一個運算式內找到之另一個運算式的起始位置。 |
CharIndex(Byte[], Byte[], Nullable<Int32>) |
傳回在一個運算式內找到之另一個運算式的起始位置。 |
備註
您無法直接呼叫此函式。 此函式只能出現在 LINQ to Entities 查詢中。
此函式會轉譯為資料庫中的對應函式。 如需對應 SQL Server 函式的相關信息,請參閱 CHARINDEX (Transact-SQL) 。
CharIndex(String, String, Nullable<Int64>)
傳回在一個運算式內找到之另一個運算式的起始位置。
public:
static Nullable<long> CharIndex(System::String ^ toSearch, System::String ^ target, Nullable<long> startLocation);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHARINDEX")]
public static long? CharIndex (string toSearch, string target, long? startLocation);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHARINDEX")>]
static member CharIndex : string * string * Nullable<int64> -> Nullable<int64>
Public Shared Function CharIndex (toSearch As String, target As String, startLocation As Nullable(Of Long)) As Nullable(Of Long)
參數
- toSearch
- String
要搜尋的字串運算式。
- target
- String
要尋找的字串運算式。
傳回
Nullable<T> 的 Int64 值,如果在 target
中找到 toSearch
,則該值為後者的起始位置。
- 屬性
備註
您無法直接呼叫此函式。 此函式只能出現在 LINQ to Entities 查詢中。
此函式會轉譯為資料庫中的對應函式。 如需對應 SQL Server 函式的相關信息,請參閱 CHARINDEX (Transact-SQL) 。
適用於
CharIndex(Byte[], Byte[], Nullable<Int64>)
傳回在一個運算式內找到之另一個運算式的起始位置。
public:
static Nullable<long> CharIndex(cli::array <System::Byte> ^ toSearch, cli::array <System::Byte> ^ target, Nullable<long> startLocation);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHARINDEX")]
public static long? CharIndex (byte[] toSearch, byte[] target, long? startLocation);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHARINDEX")>]
static member CharIndex : byte[] * byte[] * Nullable<int64> -> Nullable<int64>
Public Shared Function CharIndex (toSearch As Byte(), target As Byte(), startLocation As Nullable(Of Long)) As Nullable(Of Long)
參數
- toSearch
- Byte[]
要搜尋的字串運算式。
- target
- Byte[]
要尋找的字串運算式。
傳回
如果在 target
中找到 toSearch
,則為後者的起始位置。
- 屬性
備註
您無法直接呼叫此函式。 此函式只能出現在 LINQ to Entities 查詢中。
此函式會轉譯為資料庫中的對應函式。 如需對應 SQL Server 函式的相關信息,請參閱 CHARINDEX (Transact-SQL) 。
適用於
CharIndex(String, String, Nullable<Int32>)
傳回在一個運算式內找到之另一個運算式的起始位置。
public:
static Nullable<int> CharIndex(System::String ^ toSearch, System::String ^ target, Nullable<int> startLocation);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHARINDEX")]
public static int? CharIndex (string toSearch, string target, int? startLocation);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHARINDEX")>]
static member CharIndex : string * string * Nullable<int> -> Nullable<int>
Public Shared Function CharIndex (toSearch As String, target As String, startLocation As Nullable(Of Integer)) As Nullable(Of Integer)
參數
- toSearch
- String
要搜尋的字串運算式。
- target
- String
要尋找的字串運算式。
傳回
如果在 target
中找到 toSearch
,則為後者的起始位置。
- 屬性
備註
您無法直接呼叫此函式。 此函式只能出現在 LINQ to Entities 查詢中。
此函式會轉譯為資料庫中的對應函式。 如需對應 SQL Server 函式的相關信息,請參閱 CHARINDEX (Transact-SQL) 。
適用於
CharIndex(String, String)
傳回在一個運算式內找到之另一個運算式的起始位置。
public:
static Nullable<int> CharIndex(System::String ^ toSearch, System::String ^ target);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHARINDEX")]
public static int? CharIndex (string toSearch, string target);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHARINDEX")>]
static member CharIndex : string * string -> Nullable<int>
Public Shared Function CharIndex (toSearch As String, target As String) As Nullable(Of Integer)
參數
- toSearch
- String
要搜尋的字串運算式。
- target
- String
要尋找的字串運算式。
傳回
如果在 target
中找到 toSearch
,則為後者的起始位置。
- 屬性
備註
您無法直接呼叫此函式。 此函式只能出現在 LINQ to Entities 查詢中。
此函式會轉譯為資料庫中的對應函式。 如需對應 SQL Server 函式的相關信息,請參閱 CHARINDEX (Transact-SQL) 。
適用於
CharIndex(Byte[], Byte[])
傳回在一個運算式內找到之另一個運算式的起始位置。
public:
static Nullable<int> CharIndex(cli::array <System::Byte> ^ toSearch, cli::array <System::Byte> ^ target);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHARINDEX")]
public static int? CharIndex (byte[] toSearch, byte[] target);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHARINDEX")>]
static member CharIndex : byte[] * byte[] -> Nullable<int>
Public Shared Function CharIndex (toSearch As Byte(), target As Byte()) As Nullable(Of Integer)
參數
- toSearch
- Byte[]
要搜尋的字串運算式。
- target
- Byte[]
要尋找的字串運算式。
傳回
如果在 target
中找到 toSearch
,則為後者的起始位置。
- 屬性
備註
您無法直接呼叫此函式。 此函式只能出現在 LINQ to Entities 查詢中。
此函式會轉譯為資料庫中的對應函式。 如需對應 SQL Server 函式的相關信息,請參閱 CHARINDEX (Transact-SQL) 。
適用於
CharIndex(Byte[], Byte[], Nullable<Int32>)
傳回在一個運算式內找到之另一個運算式的起始位置。
public:
static Nullable<int> CharIndex(cli::array <System::Byte> ^ toSearch, cli::array <System::Byte> ^ target, Nullable<int> startLocation);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHARINDEX")]
public static int? CharIndex (byte[] toSearch, byte[] target, int? startLocation);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "CHARINDEX")>]
static member CharIndex : byte[] * byte[] * Nullable<int> -> Nullable<int>
Public Shared Function CharIndex (toSearch As Byte(), target As Byte(), startLocation As Nullable(Of Integer)) As Nullable(Of Integer)
參數
- toSearch
- Byte[]
要搜尋的字串運算式。
- target
- Byte[]
要尋找的字串運算式。
傳回
如果在 target
中找到 toSearch
,則為後者的起始位置。
- 屬性
備註
您無法直接呼叫此函式。 此函式只能出現在 LINQ to Entities 查詢中。
此函式會轉譯為資料庫中的對應函式。 如需對應 SQL Server 函式的相關信息,請參閱 CHARINDEX (Transact-SQL) 。