XsltFunctions.Substring Methode

Definitie

substring Implementeert de XPath-functie volgens de W3C-specificatie.

Overloads

Name Description
Substring(String, Double)

Deze API ondersteunt de productinfrastructuur en is niet bedoeld om rechtstreeks vanuit de code te gebruiken.

substring Implementeert de XPath-functie volgens de W3C-specificatie.

Substring(String, Double, Double)

Deze API ondersteunt de productinfrastructuur en is niet bedoeld om rechtstreeks vanuit de code te gebruiken.

substring Implementeert de XPath-functie volgens de W3C-specificatie.

Substring(String, Double)

Bron:
XsltFunctions.cs
Bron:
XsltFunctions.cs
Bron:
XsltFunctions.cs
Bron:
XsltFunctions.cs
Bron:
XsltFunctions.cs

substring Implementeert de XPath-functie volgens de W3C-specificatie.

Deze API ondersteunt de productinfrastructuur en is niet bedoeld om rechtstreeks vanuit de code te gebruiken.

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

Parameters

value
String

De tekenreeks waaruit de subtekenreeks moet worden opgehaald.

startIndex
Double

De begintekenpositie van een subtekenreeks in value.

Retouren

De subtekenreeks van het eerste argument beginnend bij de positie die is opgegeven in het tweede argument.

Van toepassing op

Substring(String, Double, Double)

Bron:
XsltFunctions.cs
Bron:
XsltFunctions.cs
Bron:
XsltFunctions.cs
Bron:
XsltFunctions.cs
Bron:
XsltFunctions.cs

substring Implementeert de XPath-functie volgens de W3C-specificatie.

Deze API ondersteunt de productinfrastructuur en is niet bedoeld om rechtstreeks vanuit de code te gebruiken.

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

Parameters

value
String

De tekenreeks waaruit de subtekenreeks moet worden opgehaald.

startIndex
Double

De begintekenpositie van een subtekenreeks in value.

length
Double

Het aantal tekens in de subtekenreeks.

Retouren

De subtekenreeks van het eerste argument, beginnend bij de positie die is opgegeven in het tweede argument, met de lengte die is opgegeven in het derde argument.

Van toepassing op