Quick actions

cmd+k|ctrl+k

Navigation

Languages

preg_match3

Snippet info

Language

Php

Visibility

public

Author

c0kureaxxx17

Created

2020-12-15T07:37:17Z

Updated

2020-12-15T07:37:17Z

<?php

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

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

print_r($result);
INFO