XsltFunctions.Substring Metoda

Definicja

Implementuje substring funkcję XPath zgodnie ze specyfikacją W3C.

Przeciążenia

Nazwa Opis
Substring(String, Double)

Ten interfejs API obsługuje infrastrukturę produktu i nie jest przeznaczony do użycia bezpośrednio z poziomu kodu.

Implementuje substring funkcję XPath zgodnie ze specyfikacją W3C.

Substring(String, Double, Double)

Ten interfejs API obsługuje infrastrukturę produktu i nie jest przeznaczony do użycia bezpośrednio z poziomu kodu.

Implementuje substring funkcję XPath zgodnie ze specyfikacją W3C.

Substring(String, Double)

Źródło:
XsltFunctions.cs
Źródło:
XsltFunctions.cs
Źródło:
XsltFunctions.cs
Źródło:
XsltFunctions.cs
Źródło:
XsltFunctions.cs

Implementuje substring funkcję XPath zgodnie ze specyfikacją W3C.

Ten interfejs API obsługuje infrastrukturę produktu i nie jest przeznaczony do użycia bezpośrednio z poziomu kodu.

public:
 static System::String ^ Substring(System::String ^ value, double startIndex);
public static string Substring(string value, double startIndex);
static member Substring : string * double -> string
Public Shared Function Substring (value As String, startIndex As Double) As String

Parametry

value
String

Ciąg, z którego ma być pobierany podciąg.

startIndex
Double

Pozycja znaku początkowego podciągu w elem value.

Zwraca

Podciąg pierwszego argumentu rozpoczynającego się od pozycji określonej w drugim argumencie.

Dotyczy

Substring(String, Double, Double)

Źródło:
XsltFunctions.cs
Źródło:
XsltFunctions.cs
Źródło:
XsltFunctions.cs
Źródło:
XsltFunctions.cs
Źródło:
XsltFunctions.cs

Implementuje substring funkcję XPath zgodnie ze specyfikacją W3C.

Ten interfejs API obsługuje infrastrukturę produktu i nie jest przeznaczony do użycia bezpośrednio z poziomu kodu.

public:
 static System::String ^ Substring(System::String ^ value, double startIndex, double length);
public static string Substring(string value, double startIndex, double length);
static member Substring : string * double * double -> string
Public Shared Function Substring (value As String, startIndex As Double, length As Double) As String

Parametry

value
String

Ciąg, z którego ma być pobierany podciąg.

startIndex
Double

Pozycja znaku początkowego podciągu w elem value.

length
Double

Liczba znaków w podciągnie.

Zwraca

Podciąg pierwszego argumentu, zaczynając od pozycji określonej w drugim argumencie, z długością określoną w trzecim argumencie.

Dotyczy