Quick actions

cmd+k|ctrl+k

Navigation

Languages

preg_match2

Snippet info

Language

Php

Visibility

public

Author

c0kureaxxx17

Created

2020-12-15T07:27:16Z

Updated

2020-12-15T07:39:39Z

<?php

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

$text = "123-4567 テスト県テスト市テスト町8-9-10";
preg_match("/\d{3}-\d{4}/", $text, $result);

print_r($result);
INFO