regexp-range
TypeScript icon, indicating that this package has built-in type declarations

2.0.5 • Public • Published

regexp-range

create regex class range string [一-十] [⓪-㊿] ...

install

npm i regexp-range

demo

import matchRange, { TABLE_RANGE } from 'regexp-range';

//console.log(TABLE_RANGE);

console.dir(matchRange('⓪', '㊿')); // => ['⓪' ... '㊿']
console.dir(matchRange('一', '十')); // => [ '一', '二', '三', '四', '五', '六', '七', '八', '九', '十' ]
console.dir(matchRange('零', '拾')); // => [ '零', '壱', '弐', '参', '肆', '伍', '陸', '柒', '捌', '玖', '拾' ]

console.dir(matchRange('二', '七', {
	createRegExpString: true,
})); // => '二三四五六七'
console.dir(matchRange('二', '七', {
	createRegExpString: true,
	createRegExpClass: true,
})); // => '[二三四五六七]'

Package Sidebar

Install

npm i regexp-range

Weekly Downloads

3,395

Version

2.0.5

License

ISC

Unpacked Size

64.6 kB

Total Files

19

Last publish

Collaborators

  • bluelovers