Versions Compared

Key

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

...

  • ALL_PUNCTUATION - Identifies the vertex as all token
    • The default flag if no "splitFlag" is present.
  • <splitFlag> - Defines an alternative flag to ALL_PUNCTUATION, if desired (see above)

Example

With Defaults 

Code Block
languagetext
themeFadeToGrey
V-----[Abe-Lincoln]-----V--[likes]--V--[the]--V-----[iPhone-*&@#*&7.0]-----V
^--[Abe]--V--[Lincoln]--^                     ^--[iPhone]--V--[7]--V--[0]--^ 

With Don't Split Param

Code Block
{
	"type":"CharacterSplitter",
	"dontSplitChars": "."
}


Code Block
languagetext
themeFadeToGrey
V-----[Abe-Lincoln]-----V--[likes]--V--[the]--V--[iPhone-*&@#*&7.0]--V
^--[Abe]--V--[Lincoln]--^                     ^--[iPhone]--V--[7.0]--^


With Split Chars Param

Code Block
{
	"type":"CharacterSplitter",
	"splitChars": "-#."
	"dontSplitChars": "."
}


Code Block
languagetext
themeFadeToGrey
V-----[Abe-Lincoln]-----V--[likes]--V--[the]--V--------[iPhone-*&@#*&7.0]--------V
^--[Abe]--V--[Lincoln]--^                     ^--[iPhone]--V--[*&@]--V--[*&7.0]--^