Quick actions

cmd+k|ctrl+k

Navigation

Languages

match3

Snippet info

Language

JavaScript

Visibility

public

Author

c0kureaxxx17

Created

2020-12-14T01:56:37Z

Updated

2020-12-14T02:07:02Z

const text = "123-4567 テスト県テスト市テスト町8-9-10";

const result = text.match(/\d{2,}/g);
console.log(result);
INFO