C# 클래스 Encog.MathUtil.LIBSVM.SupportClass.Tokenizer

상속: IEnumerator
파일 보기 프로젝트 열기: encog/encog-silverlight-core 1 사용 예제들

공개 메소드들

메소드 설명
HasMoreTokens ( ) : bool

Determines if there are more tokens to return from the source string

MoveNext ( ) : bool

Performs the same action as HasMoreTokens.

NextToken ( ) : String

Returns the next token from the token list

NextToken ( String delimiters ) : String

Returns the next token from the source string, using the provided token delimiters

Reset ( ) : void

Does nothing.

Tokenizer ( String source ) : System

Initializes a new class instance with a specified string to process

Tokenizer ( String source, String delimiters ) : System

Initializes a new class instance with a specified string to process and the specified token delimiters to use

Tokenizer ( String source, String delimiters, bool includeDelims ) : System

Initializes a new class instance with a specified string to process, the specified token delimiters to use, and whether the delimiters must be included in the results.

비공개 메소드들

메소드 설명
nextToken ( char delimiters ) : String

메소드 상세

HasMoreTokens() 공개 메소드

Determines if there are more tokens to return from the source string
public HasMoreTokens ( ) : bool
리턴 bool

MoveNext() 공개 메소드

Performs the same action as HasMoreTokens.
public MoveNext ( ) : bool
리턴 bool

NextToken() 공개 메소드

Returns the next token from the token list
public NextToken ( ) : String
리턴 String

NextToken() 공개 메소드

Returns the next token from the source string, using the provided token delimiters
public NextToken ( String delimiters ) : String
delimiters String String containing the delimiters to use
리턴 String

Reset() 공개 메소드

Does nothing.
public Reset ( ) : void
리턴 void

Tokenizer() 공개 메소드

Initializes a new class instance with a specified string to process
public Tokenizer ( String source ) : System
source String String to tokenize
리턴 System

Tokenizer() 공개 메소드

Initializes a new class instance with a specified string to process and the specified token delimiters to use
public Tokenizer ( String source, String delimiters ) : System
source String String to tokenize
delimiters String String containing the delimiters
리턴 System

Tokenizer() 공개 메소드

Initializes a new class instance with a specified string to process, the specified token delimiters to use, and whether the delimiters must be included in the results.
public Tokenizer ( String source, String delimiters, bool includeDelims ) : System
source String String to tokenize
delimiters String String containing the delimiters
includeDelims bool Determines if delimiters are included in the results.
리턴 System