StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
173 lines
4.9 KiB
173 lines
4.9 KiB
# split-string [](https://www.npmjs.com/package/split-string) [](https://npmjs.org/package/split-string) [](https://npmjs.org/package/split-string) [](https://travis-ci.org/jonschlinkert/split-string)
|
|
|
|
> Split a string on a character except when the character is escaped.
|
|
|
|
## Install
|
|
|
|
Install with [npm](https://www.npmjs.com/):
|
|
|
|
```sh
|
|
$ npm install --save split-string
|
|
```
|
|
|
|
## Usage
|
|
|
|
```js
|
|
var split = require('split-string');
|
|
|
|
split('a.b.c');
|
|
//=> ['a', 'b', 'c']
|
|
|
|
// respects escaped characters
|
|
split('a.b.c\\.d');
|
|
//=> ['a', 'b', 'c.d']
|
|
|
|
// respects double-quoted strings
|
|
split('a."b.c.d".e');
|
|
//=> ['a', 'b.c.d', 'e']
|
|
```
|
|
|
|
## Options
|
|
|
|
### options.sep
|
|
|
|
**Type**: `String`
|
|
|
|
**Default**: `.`
|
|
|
|
The separator/character to split on.
|
|
|
|
**Example**
|
|
|
|
```js
|
|
split('a.b,c', {sep: ','});
|
|
//=> ['a.b', 'c']
|
|
|
|
// you can also pass the separator as string as the last argument
|
|
split('a.b,c', ',');
|
|
//=> ['a.b', 'c']
|
|
```
|
|
|
|
### options.keepEscaping
|
|
|
|
**Type**: `Boolean`
|
|
|
|
**Default**: `undefined`
|
|
|
|
Keep backslashes in the result.
|
|
|
|
**Example**
|
|
|
|
```js
|
|
split('a.b\\.c');
|
|
//=> ['a', 'b.c']
|
|
|
|
split('a.b.\\c', {keepEscaping: true});
|
|
//=> ['a', 'b\.c']
|
|
```
|
|
|
|
### options.keepDoubleQuotes
|
|
|
|
**Type**: `Boolean`
|
|
|
|
**Default**: `undefined`
|
|
|
|
Keep double-quotes in the result.
|
|
|
|
**Example**
|
|
|
|
```js
|
|
split('a."b.c.d".e');
|
|
//=> ['a', 'b.c.d', 'e']
|
|
|
|
split('a."b.c.d".e', {keepDoubleQuotes: true});
|
|
//=> ['a', 'b.c.d', 'e']
|
|
```
|
|
|
|
### options.keepSingleQuotes
|
|
|
|
**Type**: `Boolean`
|
|
|
|
**Default**: `undefined`
|
|
|
|
Keep single-quotes in the result.
|
|
|
|
**Example**
|
|
|
|
```js
|
|
split('a.\'b.c.d\'.e');
|
|
//=> ['a', 'b.c.d', 'e']
|
|
|
|
split('a.\'b.c.d\'.e', {keepSingleQuotes: true});
|
|
//=> ['a', 'b.c.d', 'e']
|
|
```
|
|
|
|
### options.strict
|
|
|
|
**Type**: `Boolean`
|
|
|
|
**Default**: `undefined`
|
|
|
|
When `true` or `undefined`, throws an error on unclosed double and single quotes.
|
|
Set to `false` to ignore errors and continue parsing.
|
|
|
|
**Example**
|
|
|
|
```js
|
|
split('a.\'b.c', {strict: false});
|
|
//=> ['a', 'b', 'c']
|
|
```
|
|
|
|
## About
|
|
|
|
### Related projects
|
|
|
|
* [deromanize](https://www.npmjs.com/package/deromanize): Convert roman numerals to arabic numbers (useful for books, outlines, documentation, slide decks, etc) | [homepage](https://github.com/jonschlinkert/deromanize "Convert roman numerals to arabic numbers (useful for books, outlines, documentation, slide decks, etc)")
|
|
* [randomatic](https://www.npmjs.com/package/randomatic): Generate randomized strings of a specified length, fast. Only the length is necessary, but you… [more](https://github.com/jonschlinkert/randomatic) | [homepage](https://github.com/jonschlinkert/randomatic "Generate randomized strings of a specified length, fast. Only the length is necessary, but you can optionally generate patterns using any combination of numeric, alpha-numeric, alphabetical, special or custom characters.")
|
|
* [repeat-string](https://www.npmjs.com/package/repeat-string): Repeat the given string n times. Fastest implementation for repeating a string. | [homepage](https://github.com/jonschlinkert/repeat-string "Repeat the given string n times. Fastest implementation for repeating a string.")
|
|
* [romanize](https://www.npmjs.com/package/romanize): Convert arabic numbers to roman numerals (useful for books, outlines, documentation, slide decks, etc) | [homepage](https://github.com/jonschlinkert/romanize "Convert arabic numbers to roman numerals (useful for books, outlines, documentation, slide decks, etc)")
|
|
|
|
### Contributing
|
|
|
|
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
|
|
|
|
### Contributors
|
|
|
|
| **Commits** | **Contributor** |
|
|
| --- | --- |
|
|
| 7 | [jonschlinkert](https://github.com/jonschlinkert) |
|
|
| 1 | [doowb](https://github.com/doowb) |
|
|
|
|
### Building docs
|
|
|
|
_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
|
|
|
|
To generate the readme, run the following command:
|
|
|
|
```sh
|
|
$ npm install -g verbose/verb#dev verb-generate-readme && verb
|
|
```
|
|
|
|
### Running tests
|
|
|
|
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
|
|
|
|
```sh
|
|
$ npm install && npm test
|
|
```
|
|
|
|
### Author
|
|
|
|
**Jon Schlinkert**
|
|
|
|
* [github/jonschlinkert](https://github.com/jonschlinkert)
|
|
* [twitter/jonschlinkert](https://twitter.com/jonschlinkert)
|
|
|
|
### License
|
|
|
|
Copyright © 2017, [Jon Schlinkert](https://github.com/jonschlinkert).
|
|
Released under the [MIT License](LICENSE).
|
|
|
|
***
|
|
|
|
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.4.3, on April 11, 2017._ |