Versions Compared

Key

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

...

Examples

Code Block
languagejs
themeEclipse
titleExample Configuration 1
{
 "type":"CharacterSplitter",
 "dontSplitChars":"."
}

...

For example, the token:  "SagaToolkit-1.0" will produce the following graph:

Code Block
languagetext
themeFadeToGrey
V-------[SagaToolkit-1.0]-------V

...


 ^---[SagaToolkit]--V--[1.0]----^


Code Block
languagejs
themeEclipse
titleExample Configuration 1
{
  "type":"CharacterSplitter",
  "splitChars":"-",
  "splitFlag":"DASH_SPLIT"
}

...

With Don't Split Param

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

...

With Split Chars Param

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

...