INonAggregateExpressionBuilder.Substr Method (VariableExpression, Int32, NumericExpression<Int32>) |
Creates a call to the SUBSTR function with a variable, interger and a numeric expression parameters.
Namespace:
VDS.RDF.Query.Builder
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
SyntaxTypedLiteralExpression<string> Substr(
VariableExpression str,
int startingLoc,
NumericExpression<int> length
)
Function Substr (
str As VariableExpression,
startingLoc As Integer,
length As NumericExpression(Of Integer)
) As TypedLiteralExpression(Of String)
Parameters
- str
- Type: VDS.RDF.Query.Builder.Expressions.VariableExpression
a SPARQL variable. - startingLoc
- Type: System.Int32
1-based start index. - length
- Type: VDS.RDF.Query.Builder.Expressions.NumericExpression<Int32>
substring length.
Return Value
Type:
TypedLiteralExpression<String>[Missing <returns> documentation for "M:VDS.RDF.Query.Builder.INonAggregateExpressionBuilder.Substr(VDS.RDF.Query.Builder.Expressions.VariableExpression,System.Int32,VDS.RDF.Query.Builder.Expressions.NumericExpression{System.Int32})"]
See Also