
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
splitstringbycharactergroups
Advanced tools
split up a string by defined character groups. useful for creating custom regex tools.
Splits a string by character groups that you define. Useful for custom regex manipulation
Helps you split:
'BEAGG#AbB'
into [ 'B', 'E', 'A', 'G', 'G#', 'Ab', 'B' ]
'daʊnloʊd'
into [ 'd', 'aʊ', 'n', 'l', 'oʊ', 'd' ]
$ npm i splitstringbycharactergroups
const split = require('splitstringbycharactergroups');
splitStringByCharacterGroups
const input = 'abcd';
const characterGroups = ['bc','a','d'];
const result = split.splitStringByCharacterGroups(input, characterGroups)
// result should be [ 'a', 'bc', 'd' ]
splitStringByCharacterGroups
method takes 4 arguments:
input
characterGroups
, an ordered array of character groups. will usually want longest first.ignoreExtraneousCharacters
? defaults to true/ignore. set false to return unidentified chars as undefined. see examples.splitExtraneousCharacters
?. defaults to false/doesn't split. set to true to split unidentified substrings into individual elements of single char length. see examples.sortCharacterGroups
on an array to return array sorted by character length and reversed alphabeticallyconst character_groups = ['A','B','C','D','E','F','G','Ab','Bb','Cb','Db','Eb','Fb','Gb','A#','B#','C#','D#','E#','F#','G#'];
const sorted = split.sortCharacterGroups(character_groups);
//sorted should be ['Gb','G#','Fb','F#','Eb','E#','Db','D#','Cb','C#','Bb','B#','Ab','A#','G','F','E','D','C','B','A']
Get string with musical pitches split into correct groupings
const split = require('SplitStringByCharacterGroups')
const character_groups = ['A','B','C','D','E','F','G','Ab','Bb','Cb','Db','Eb','Fb','Gb','A#','B#','C#','D#','E#','F#','G#'];
const sorted = split.sortCharacterGroups(character_groups);
const input = 'BEAGG#AbB';
const result = split.splitStringByCharacterGroups(input,sorted);
//result should be ['B', 'E', 'A', 'G', 'G#', 'Ab', 'B' ], what we want
//without sorting:
const split_array = split.splitStringByCharacterGroups('BEAGG#AbB',character_groups);
//character groups are not in right order so returns [ 'B', 'E', 'A', 'G', 'G#', 'A', 'b', 'B' ]
Works with unidentified characters:
const split_array = split.splitStringByCharacterGroups('BEAzzzqurGG#Abvv44B', sorted);
// [ 'B', 'E', 'A', 'zzzqur', 'G', 'G#', 'Ab', 'vv44', 'B' ];
Set ignoreExtraneousCharacters
param to false to return unidentified characters as undefined
:
const split_array = split.splitStringByCharacterGroups('BEAzzzqurGG#Abvv44B', sorted, false);
// [ 'B', 'E', 'A', undefined, 'G', 'G#', 'Ab', undefined, 'B' ]
Set both ignoreExtraneousCharacters
and splitExtraneousCharacters
params to true to split unidentified substrings into individual single-char-length elements.
const character_groups = ['eɪ','aɪ','aʊ','oʊ','ɔɪ'];
const split_array = s.splitStringByCharacterGroups('daʊnloʊd',character_groups,true,true)
// returns [ 'd', 'aʊ', 'n', 'l', 'oʊ', 'd' ]
ES6+ Node 6+
FAQs
split up a string by defined character groups. useful for creating custom regex tools.
We found that splitstringbycharactergroups demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.