|
|
|
preg_replace จะเขียนให้อนุญาติแค่ภาษาไทยกับอังกฤษแล้วก็ตัวเลขยังไงอะครับ ขอแนวก็ได้ |
|
|
|
|
|
|
|
preg_replace('/[^a-z0-9ก-๙เแ\_\- ]/i', '', 'Posted on พฤศจิกายน 29, 2010 | ไม่มีความเห็น Cosplay มาให้ดูกัน วันนี้มี Cosplay Tifa Lockhart หนึ่งในตัวละคร');
|
|
|
|
|
Date :
2011-03-03 17:32:22 |
By :
extenser |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้ ereg() ereg_replace()
|
|
|
|
|
Date :
2011-03-03 17:33:00 |
By :
แดง |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (JavaScript)
function check_username(name,field){
x = field.value;
var regex = /^[a-zA-Z0-9_-]{4,16}$/;
if (x != '' && !regex.test(x)) {
alert(name+" ต้องมีความยาวมากกว่า 4 ตัวอักษร (a-z , 0-9 or - , _ เท่านั้น)");
field.focus();
return false;
}
return true;
}
|
|
|
|
|
Date :
2011-03-04 04:08:08 |
By :
samyuranun |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
น่าจะเอาไปดังแปลงเองได้นะครับ
|
|
|
|
|
Date :
2011-03-04 04:09:22 |
By :
samyuranun |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|