Versions Compared

Key

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

...

  • Parameter
    summaryIf true, all tokens are separated on a case change
    defaulttrue
    namecase
    typeboolean
  • Parameter
    summaryIf true, all tokens are separated on a letter-number
    defaulttrue
    namenumber
    typeboolean
  • Parameter
    summaryIf true, all tokens are separated on an alphanumeric-punctuation
    defaulttrue
    namepunctuation
    typeboolean
  • Parameter
    summaryIf true, all tokens are separated on an alphanumeric-punctuation
    namesplitFlag


Code Block
languagejs
Saga_config_stage
boundaryFlagstext block split
stageCharChangeSplitter
requiredFlagstoken
"case": true,
"number": true,
"punctuation": true

Example Output

saga_graph
Code Block
languagetext
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]--^  


No split on punctuation

saga_graph
Code Block
languagejs
Saga_config_stage
boundaryFlagstext block split
stageCharChangeSplitter
requiredFlagstoken
titleWithout Punctuation Separation
"punctuation": false
Code Block
languagetext
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]--^  


No split on number change

saga_graph
Code Block
languagejs
Saga_config_stage
boundaryFlagstext block split
stageCharChangeSplitter
requiredFlagstoken
titleWithout Number Separation
"number": false
Code Block
languagetext
V--[Issues]--V--[with]--V---------[SagaToken123@#$]---------V--[send]--V--[email]--V--[to]--V-------------------[[email protected]]--------------------V--[for]--V--[HELP]--V
                        ^--[Saga]--V--[Token123]--V--[@#$]--^                               ^--[it]--V--[@]--V--[this]--V--[Company]--V--[.]--V--[com]--^  


No split on casing

saga_graph
Code Block
languagejs
Saga_config_stage
boundaryFlagstext block split
stageCharChangeSplitter
requiredFlagstoken
titleWithout Case Separation
"case": false
Code Block
languagetext
V--[Issues]--V--[with]--V---------[SagaToken123@#$]---------V--[send]--V--[email]--V--[to]--V----------------[[email protected]]----------------V--[for]--V--[HELP]--V
                        ^--[SagaToken]--V--[123]--V--[@#$]--^                               ^--[it]--V--[@]--V--[thisCompany]--V--[.]--V--[com]--^  



Output Flags

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

...