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)


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

...

Without Punctuation Separation

Code Block
languagejs
themeEclipse
{
	"type":"CharChangeSplitter",
	"punctuation" : false
}

...

Without Number  Separation

Code Block
languagejs
themeEclipse
{
	"type":"CharChangeSplitter",
	"number" : false
}

...

Without Case Separation

Code Block
languagejs
themeEclipse
{
	"type":"CharChangeSplitter",
	"case" : false
}

...