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


Saga_config_stage
boundaryFlagstext block split
stageCharChangeSplitter
requiredFlagstoken
"
Code Block
languagejs
themeEclipse
titleExample Configuration
{
  	"type":"CharChangeSplitter",
  	"case": true,
	"number": true,
	"punctuation": true
}

Example Output

...

Saga_config_stage
boundaryFlagstext block split
stageCharChangeSplitter
requiredFlagstoken

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

  • If the token being 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 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.
  • HAS_DIGIT - Tokens produced with at least one digit character are tagged as HAS_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 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]--^  

Without Punctuation Separation

Saga_config_stage
boundaryFlagstext block split
stageCharChangeSplitter
requiredFlagstoken
titleWithout Punctuation Separation
"punctuation": false
Code Block
languagejs
themeEclipse
{
	"type":"CharChangeSplitter",
	"punctuation" : false
}
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 Separation

Saga_config_stage
boundaryFlagstext block split
stageCharChangeSplitter
requiredFlagstoken
titleWithout Number Separation
"number": false
Code Block
languagejs
themeEclipse
{
	"type":"CharChangeSplitter",
	"number" : false
}
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--[Token123]--V--[@#$]--^                               ^--[it]--V--[@]--V--[this]--V--[Company]--V--[.]--V--[com]--^  

Without Case Separation

Saga_config_stage
boundaryFlagstext block split
stageCharChangeSplitter
requiredFlagstoken
titleWithout Case Separation
"case": false
Code Block
languagejs
themeEclipse
{
	"type":"CharChangeSplitter",
	"case" : false
}
Code Block
languagetext
themeFadeToGrey
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:

  • If the token being 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 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.
  • HAS_DIGIT - Tokens produced with at least one digit character are tagged as HAS_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 punctuation characters.