cc-regex

1.0.7 • Public • Published

npm version

cc-regex

Regular expression for Character classes

Usage

Find an email address

'foo@example.com'.match(/\x{email}/g)
// ['foo@example.com']

Find a URL

'https://example.com/foo/bar'.match(/\x{url}/g)
// ['https://example.com/foo/bar']

Find a 都道府県

'島根県にパソコンなんてあるわけないじゃん'.match(/\x{都道府県}/g)
// ['島根県']

Find a IP address

'127.0.0.1'.match(/\x{ip}/g)
// ['127.0.0.1']

Find a FQDN

'example.com sub.example.com'.match(/\x{fqdn}/g)
// ['example.com', 'sub.example.com']

Find a Location

const str = '時どき私はそんな路を歩きながら、ふと、そこが京都ではなくて京都から何百里も離れた仙台とか長崎とか――そのような市へ今自分が来ているのだ――という錯覚を起こそうと努める。'
await str.matchAsync(/\x{場所}/g)
// ['京都', '京都', '仙台', '長崎']

Find a Person

const str = '昨日、ジョンと山田太郎は松のやでカツ丼を食した。'
await str.matchAsync(/\x{人物}/g)
// ['ジョン', '山田太郎']

Install

npm install cc-regex

image

for browser

<script src="https://github30.github.io/cc-regex/index.js">

Package Sidebar

Install

npm i cc-regex

Weekly Downloads

9

Version

1.0.7

License

MIT

Unpacked Size

9.12 kB

Total Files

5

Last publish

Collaborators

  • salamander_jp