@feizheng/next-array-replace
v1.0.2
Published
Multiple replace for array.
Readme
next-array-replace
Multiple replace for array.
installation
npm install -S @feizheng/next-array-replaceusage
import '@feizheng/next-array-replace';
const arr= [
[/a/g,'A'],
['hello','world']
];
const str = 'aaa-bbb-1234 hello Fei!';
const res = nx.arrayReplace( str, arr);
// AAA-bbb-1234 world Fei!