Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • case (boolean, optional) - If true, all tokens are separated on a case change (default = true)
  • number (boolean, optional) - If true, all tokens are separated on a letter-number. (default = true)
  • punctuation (boolean, optional) - If true, all tokens are separated on an alphanumeric-punctuation. (default = true)
  • splitFlag (string, optional) - Flasg name used to identify the vertex created by the split. If none provided "ALL_PUNCTUATION" is used.


Code Block
languagejs
themeEclipse
titleExample Configuration
{
  	"type":"CharChangeSplitter",
  	"case": true,
	"number": true,
	"punctuation": true
}

...

  • TOKEN - All tokens produced are tagged as TOKEN
  • ALL_PUNCTUATION - Tokens processed or produced composed only of punctuation characters are tagged as ALL_PUNCTUATION 
  • HAS_DIGIT - Tokens produced with at least one digit character are tagged as HAS_DIGIT 
  • HAS_PUNCTUATION - Tokens produced with at least one punctuation character are tagged as HAS_PUNCTUATION. (ALL_PUNCTUATION will not be tagged as HAS_PUNCTUATION)

Vertex Flags:

If no flag is set on the "splitFlag" parameter:

  • ALL_PUNCTUATION CHAR_CHANGE -  Identifies the vertex as a change between character formatsall puntuation characters.

Example

With Defaults 

Code Block
languagetext
themeFadeToGrey
V--[Issues]--V--[with]--V------------[SagaToken123@#$]-------------V--[send]--V--[email]--V--[to]--V-------------------[[email protected]]--------------------V--[for]--V--[HELP]--V
                        ^--[Saga]--V--[Token]--V--[123]--V--[@#$]--^                               ^--[it]--V--[@]--V--[this]--V--[Company]--V--[.]--V--[com]--^  

...