Spread Windows Forms 17
GrapeCity.CalcEngine Assembly / GrapeCity.CalcEngine Namespace / Wildcard Class / ParseTokens Method
A string value indicates the wilcard pattern.
if set to true, the pattern intend to be used for "starts with" comparasion.


In This Topic
    ParseTokens Method
    In This Topic
    Parses the wildcard tokens.
    Syntax
    'Declaration
     
    
    Public Shared Function ParseTokens( _
       ByVal pattern As String, _
       Optional ByVal startsWithTokens As Boolean _
    ) As WildcardToken()
    'Usage
     
    
    Dim pattern As String
    Dim startsWithTokens As Boolean
    Dim value() As WildcardToken
     
    value = Wildcard.ParseTokens(pattern, startsWithTokens)
    public static WildcardToken[] ParseTokens( 
       string pattern,
       bool startsWithTokens
    )

    Parameters

    pattern
    A string value indicates the wilcard pattern.
    startsWithTokens
    if set to true, the pattern intend to be used for "starts with" comparasion.

    Return Value

    A WildcardToken array represents the wilcard tokens.
    See Also