string-split-by

WebJar for string-split-by

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

string-split-by
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

string-split-by
WebJar for string-split-by
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/dy/string-split-by

Download string-split-by

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/string-split-by/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>string-split-by</artifactId>
    <version>1.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/string-split-by/
implementation 'org.webjars.npm:string-split-by:1.0.0'
// https://jarcasting.com/artifacts/org.webjars.npm/string-split-by/
implementation ("org.webjars.npm:string-split-by:1.0.0")
'org.webjars.npm:string-split-by:jar:1.0.0'
<dependency org="org.webjars.npm" name="string-split-by" rev="1.0.0">
  <artifact name="string-split-by" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='string-split-by', version='1.0.0')
)
libraryDependencies += "org.webjars.npm" % "string-split-by" % "1.0.0"
[org.webjars.npm/string-split-by "1.0.0"]

Dependencies

compile (1)

Group / Artifact Type Version
org.webjars.npm : parenthesis jar [3.1.5,4)

Project Modules

There are no modules declared in this project.

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

Versions

Version
1.0.0