正規表示式總結

2022-08-03 09:21:10 字數 1667 閱讀 4284

正規表示式限制輸入框只能輸入數字      **如下: 

"text

" onkeyup="

this.value=this.value.replace(/[^\d]/g,'') 

" onafterpaste="

this.value=this.value.replace(/[^\d]/g,'') 

" name="

f_order

" value="

1"/> 

其中,onafterpaste防止使用者從其它地方copy內容貼上到輸入框 

輸入框只能輸入字母和下橫線的正規表示式 

"this.value=this.value.replace(/[^_a-za-z]/g,'')

" onpaste="

this.value=this.value.replace(/[^_a-za-z]/g,'')

"> 

輸入框只能輸入字母數字和下橫線的正規表示式 

"this.value=this.value.replace(/[^\w]/g,'')

" onpaste="

this.value=this.value.replace(/[^\w]/g,'')

"> 或 "

this.value=this.value.replace(/[\w]/g,'')

" onpaste="

this.value=this.value.replace(/[\w]/g,'')

">

只能輸入數字和英文的: 

"value=value.replace(/[\w]/g,'') 

"onbeforepaste="

clipboarddata.setdata('text',clipboarddata.getdata('text').replace(/[^\d]/g,''))

"> 

2.只能輸入數字的: 

"value=value.replace(/[^\d]/g,'') 

"onbeforepaste="

clipboarddata.setdata('text',clipboarddata.getdata('text').replace(/[^\d]/g,''))

"> 

3.只能輸入全形的: 

"value=value.replace(/[^\uff00-\uffff]/g,'')

" onbeforepaste="

clipboarddata.setdata('text',clipboarddata.getdata('text').replace(/[^\uff00-\uffff]/g,''))

"> 

4.只能輸入漢字的: 

"value=value.replace(/[^\u4e00-\u9fa5]/g,'')

" onbeforepaste="

clipboarddata.setdata('text',clipboarddata.getdata('text').replace(/[^\u4e00-\u9fa5]/g,''))

"> 

5.也可以這樣: 輸入數字和.,否則彈出輸入有誤 

"" onblur="

if (!(/^[\d]+\.?\d*$/.test(this.value)) )

">

view code

正規表示式 正規表示式 總結

非負整數 d 正整數 0 9 1 9 0 9 非正整數 d 0 負整數 0 9 1 9 0 9 整數 d 非負浮點數 d d 正浮點數 0 9 0 9 1 9 0 9 0 9 1 9 0 9 0 9 0 9 1 9 0 9 非正浮點數 d d 0 0 負浮點數 正浮點數正則式 英文本串 a za z...

正規表示式總結

正規表示式用於操作字串的規則,這些規則由一些符號所組成。使用正規表示式可以進行更複雜的操作,而且這種複雜的操作要比方法短的多。功能 1,匹配。使用的是string類中的matches方法。2,切割。使用的string類split方法。3,替換。4,查詢。1,將正則規則通過pattern類中的stat...

正規表示式總結

常用正規表示式總結 w w w 驗證 號碼 d d d 正確格式為 x x xx x xx x 和 xx 驗證身份證號 15位或18位數字 d d 驗證一年的12個月 0?1 9 1 0 2 正確格式為 01 09 和 1 12 驗證乙個月的31天 0?1 9 1 2 0 9 30 31 正確格式為...