Quick actions

cmd+k|ctrl+k

Navigation

Languages

match2

Snippet info

Language

JavaScript

Visibility

public

Author

c0kureaxxx17

Created

2020-12-14T01:04:38Z

Updated

2020-12-14T01:04:38Z

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

const postal = text.match(/\d{3}-\d{4}/);
console.log(postal[0]);
INFO