2011-05-23 96 views

回答

3

匹配該爲ASCII是一個例子正則表達式

^[0-9A-Za-z][A-Za-z][13579][0-9A-Za-z]{3,}$ 

PHP代碼

<?php 
$test = '0A1000'; 
if (preg_match('/^[0-9A-Za-z][A-Za-z][13579][0-9A-Za-z]{3,}$/', $test)) { 
    // Do some stuff 
    echo "matched"; 
} 
+0

我會如何使用的preg_match? – Shamoon 2011-05-23 02:09:13

+0

@Shamoon:vide:http://php.net/preg_match – 2011-05-23 02:11:51

+0

更新了正則表達式,並在PHP中添加了一個示例。 – 2011-05-23 02:12:15

相關問題