Class ReplaceFunction
Represents the XPath fn:replace() function.
Inheritance
System.Object
ReplaceFunction
Implements
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
Namespace: VDS.RDF.Query.Expressions.Functions.XPath.String
Assembly: dotNetRdf.dll
Syntax
public class ReplaceFunction : ISparqlExpression
Constructors
| Improve this Doc View SourceReplaceFunction(ISparqlExpression, ISparqlExpression, ISparqlExpression, ISparqlExpression)
Creates a new XPath Replace function.
Declaration
public ReplaceFunction(ISparqlExpression text, ISparqlExpression find, ISparqlExpression replace, ISparqlExpression options)
Parameters
Type | Name | Description |
---|---|---|
ISparqlExpression | text | Text Expression. |
ISparqlExpression | find | Search Expression. |
ISparqlExpression | replace | Replace Expression. |
ISparqlExpression | options | Options Expression. |
ReplaceFunction(ISparqlExpression, ISparqlExpression, ISparqlExpression)
Creates a new XPath Replace function.
Declaration
public ReplaceFunction(ISparqlExpression text, ISparqlExpression find, ISparqlExpression replace)
Parameters
Type | Name | Description |
---|---|---|
ISparqlExpression | text | Text Expression. |
ISparqlExpression | find | Search Expression. |
ISparqlExpression | replace | Replace Expression. |
Properties
| Improve this Doc View SourceArguments
Gets the Arguments of the Expression.
Declaration
public IEnumerable<ISparqlExpression> Arguments { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<T><ISparqlExpression> |
CanParallelise
Gets whether an expression can safely be evaluated in parallel.
Declaration
public virtual bool CanParallelise { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
FindExpression
Declaration
public ISparqlExpression FindExpression { get; }
Property Value
Type | Description |
---|---|
ISparqlExpression |
FindPattern
Declaration
public string FindPattern { get; }
Property Value
Type | Description |
---|---|
string |
FixedFindPattern
Declaration
public bool FixedFindPattern { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
FixedOptions
Declaration
public bool FixedOptions { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
FixedReplacePattern
Declaration
public bool FixedReplacePattern { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Functor
Gets the Functor of the Expression.
Declaration
public string Functor { get; }
Property Value
Type | Description |
---|---|
string |
Options
Declaration
public RegexOptions Options { get; }
Property Value
Type | Description |
---|---|
System.Text.RegularExpressions.RegexOptions |
OptionsExpression
Declaration
public ISparqlExpression OptionsExpression { get; }
Property Value
Type | Description |
---|---|
ISparqlExpression |
ReplaceExpression
Declaration
public ISparqlExpression ReplaceExpression { get; }
Property Value
Type | Description |
---|---|
ISparqlExpression |
ReplacePattern
Declaration
public string ReplacePattern { get; }
Property Value
Type | Description |
---|---|
string |
TestExpression
Declaration
public ISparqlExpression TestExpression { get; }
Property Value
Type | Description |
---|---|
ISparqlExpression |
Type
Gets the Type of the Expression.
Declaration
public SparqlExpressionType Type { get; }
Property Value
Type | Description |
---|---|
SparqlExpressionType |
Variables
Gets the enumeration of Variables involved in this Expression.
Declaration
public IEnumerable<string> Variables { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<T><string> |
Methods
| Improve this Doc View SourceAccept<T>(ISparqlExpressionVisitor<T>)
Declaration
public T Accept<T>(ISparqlExpressionVisitor<T> visitor)
Parameters
Type | Name | Description |
---|---|---|
ISparqlExpressionVisitor<T> | visitor |
Returns
Type | Description |
---|---|
T |
Type Parameters
Name | Description |
---|---|
T |
Accept<TResult, TContext, TBinding>(ISparqlExpressionProcessor<TResult, TContext, TBinding>, TContext, TBinding)
Declaration
public TResult Accept<TResult, TContext, TBinding>(ISparqlExpressionProcessor<TResult, TContext, TBinding> processor, TContext context, TBinding binding)
Parameters
Type | Name | Description |
---|---|---|
ISparqlExpressionProcessor<TResult, TContext, TBinding> | processor | |
TContext | context | |
TBinding | binding |
Returns
Type | Description |
---|---|
TResult |
Type Parameters
Name | Description |
---|---|
TResult | |
TContext | |
TBinding |
GetOptions(IValuedNode, bool)
Configures the Options for the Regular Expression.
Declaration
public RegexOptions GetOptions(IValuedNode n, bool throwErrors)
Parameters
Type | Name | Description |
---|---|---|
IValuedNode | n | Node detailing the Options. |
System.Boolean | throwErrors | Whether errors should be thrown or suppressed. |
Returns
Type | Description |
---|---|
System.Text.RegularExpressions.RegexOptions |
ToString()
Gets the String representation of this Expression.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string |
Overrides
object.ToString()
|
Improve this Doc
View Source
Transform(IExpressionTransformer)
Transforms the Expression using the given Transformer.
Declaration
public ISparqlExpression Transform(IExpressionTransformer transformer)
Parameters
Type | Name | Description |
---|---|---|
IExpressionTransformer | transformer | Expression Transformer. |
Returns
Type | Description |
---|---|
ISparqlExpression |