string-split-by
Split string by any separator excluding brackets, quotes and escaped characters
Last updated 7 years ago by dfcreative .
MIT · Repository · Bugs · Original npm
$ cnpm install string-split-by 
SYNC missed versions from official npm registry.

string-split-by unstable Build Status

Split string by a separator with respect to brackets, quotes and escape markers. Optimized version of string-split.

Usage

npm install string-split-by

var split = require('string-split-by')

split('a."b.c".d.{.e.f.g.}.h', '.')
// ['a', '"b.c"', 'd', '{.e.f.g.}', 'h']

split('a."b.c".d.{.e.f.g.}.h', '.', {ignore: '""'})
// ['a', '"b.c"', 'd', '{', 'e', 'f', 'g', '}', 'h']

API

parts = splitBy(string, separator, options?)

Return array with parts split from string by a separator, which can be whether String or RegExp. Options can define:

Option Default Meaning
ignore ['"', "'", '`', '“”', '«»', '[]', '()', '{}'] Avoid splitting content enclosed in the character pairs. Can be a string or a list of strings.
escape true Avoid splitting at the escaped separator, eg. \. won't be separated by '.' separator.

Related

License

© 2018 Dmitry Yv. MIT License

Current Tags

  • 1.0.0                                ...           latest (7 years ago)

1 Versions

  • 1.0.0                                ...           7 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (1)
Dev Dependencies (1)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org