1.0.3 • Published 8 years ago

string-remove v1.0.3

Weekly downloads
6
License
MIT
Repository
github
Last release
8 years ago

string-remove Build Status

Remove unwanted things in your string

Install

$ npm install --save string-remove

Usage

const stringRemove = require('string-remove');

const yourString1 = 'examle???string.@@!!';

const result = stringRemove(yourString1, ['?','@','.','!']);

console.log(result);
//=> 'examlestring'

const yourString2 = '% % %t e s t$ $ $ ';

const result = stringRemove(yourString2, ['%t',' ', '%', '$', 't']);

console.log(result);
//=> 'es'

API

stringRemove(str, options)

str

Type: string

String which need to be processed.

options

Type: array

Elements need to be removed.

License

MIT © haotian Chang