0.0.1 • Published 5 years ago

@syanaputra/json-string-parser v0.0.1

Weekly downloads
2
License
MIT
Repository
-
Last release
5 years ago

json-string-parser

This module allow string modification with by specifying the given JSON rules

Installation

Coming soon

Usage

Coming soon

Available Rules

Trim

Remove space on the beginning and the end of a string.

JSON data:

{
    "type": "trim"
}

Usage:

var input = " text with spaces ";
var rules = [{
    "type": "trim",
}];
var result = jsonStringParse(input, rules);
console.log(result); // Result: "text with spaces"

Split

Split a text into array with given delimiter

JSON data:

{
    "type": "split",
    "value": ","
}

Usage:

var input = "1,2";
var rules = [{
    "type": "split",
    "value": ","
}];
var result = jsonStringParse(input, rules);
console.log(result); // Result: array with values [1,2]

Join

Combine array into text with given glue into string

JSON data:

{
    "type": "join",
    "value": ","
}

Usage:

var input = [1, 2];
var rules = [{
    "type": "join",
    "value": ","
}];
var result = jsonStringParse(input, rules);
console.log(result); // Result: "1,2"