Versions Compared

Key

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

Separates tokens based on character changes from lowercase-uppercase, letter-number, alphanumeric-punctuation. Without taking any character in the vertex, and respecting the capital letter.


Operates On:  Lexical Items with TOKEN flag

...

  • 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 Flag name used to identify the vertex created by the split. If none provided "ALL_PUNCTUATION" is used.

...

Note that flags are placed on every token as appropriate to the current token:

  • If the token being process processed is "token.123", the parameter "punctuation" is set, then one of tokens generated should be "." , and it will have the ALL_PUNCTUATION flag.
  • If the token being process processed is "token.123", the parameter "punctuation" is NOT set, then one of tokens generated should be "token." , and it will have the HAS_PUNCTUATION flag.

Lex-Item Flags

...

  • TOKEN - All tokens produced are tagged as TOKEN.
  • ALL_PUNCTUATION - Tokens processed or produced composed only of punctuation characters are tagged as ALL_PUNCTUATION PUNCTUATION.
  • HAS_DIGIT - Tokens produced with at least one digit character are tagged as HAS_DIGIT 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 -  Identifies the vertex all puntuation punctuation characters.

...

Examples

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]--^  

...

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@#$]--^                               ^--[it@this]--V--[Company.com]--^  

Without Number  SeparationSeparation

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

...