Attempts to match the start of the string.

Namespace:  SingularSys.Jep.ConfigurableParser.Matchers
Assembly:  Jep (in Jep.dll) Version: 1.1.0.0 (1.0.0)

Syntax

C#
public virtual Token Match(
	string s
)
Visual Basic (Declaration)
Public Overridable Function Match ( _
	s As String _
) As Token
Visual C++
public:
virtual Token^ Match(
	String^ s
)

Parameters

s
Type: System..::.String
the string to match against

Return Value

if successful returns the corresponding token, return null if failed to match

Implements

ITokenMatcher..::.Match(String)

See Also