各種正則判斷(前端)

2021-08-20 01:22:18 字數 955 閱讀 4118

匹配表情:

/[^\u0020-\u007e\u00a0-\u00be\u2e80-\ua4cf\uf900-\ufaff\ufe30-\ufe4f\uff00-\uffef\u0080-\u009f\u2000-\u201f\u2026\u2022\u20ac\r\n]/g;

匹配只能輸入中文或英文或者數字: /^[\u4e00-\u9fa50-9a-za-z]+$/

匹配手機號碼:/^[1][3,4,5,7,8][0-9]$/

匹配整數:/^\d+$/

匹配整數或小數點後一位 兩位:/^\d+\.\d$/

小數點後兩位自動補全:

function

overformat(value)

else

if (

value ===

'0')

else

if (v ===

'0.')

else

if (/^0 +\d +\.?\d *.*$ /.test(v))

else

if (/^0\.\d$/.test(v))

else

if (!/^\d+\.\d$/.test(v)) .+/.test(v)) ).*$/,

'$1'); }

else

if (/^\d+$/.test(v))

else

if (/^\d+\.$/.test(v))

else

if (/^\d+\.\d$/.test(v))

else

if (/^[^\d]+\d+\.?\d*$/.test(v))

else

if (/\d+/.test(v))

else

if (/^0+\d+\.?\d*$/.test(v))

else }

return v; }

js 前端各種型別進行判斷比較

字串行轉換為int型別。否則加起來為 01 尷尬 var index parseint 0 1 數字型別進行比較大小 判斷兩個int型別是否相等 if eval index eval imgpath.length 數字型別 相等,若是字串型別的話需要新增 example 或者直接在js中判斷 if ...

各種正則相關

身份證號碼驗證正規表示式 需要乙個簡單的驗證身份證號的正規表示式,從網上查了很多,都有問題,主要是只要超過15位,都能夠通過,於是自己查了半天手冊,寫了下面這個式子,能夠滿足簡單的要求 1 15位或18位,如果是15位,必需全是數字。2 如果是18位,最後一位可以是數字或字母xx,其餘必需是數字。d...

java js 各種正則

先學習基本規則 有點枯燥,可以參考下 正規表示式 教程 菜鳥教程 正規表示式驗證工具類 開源中國社群 自己用過的 1,校驗手機號 regularexp 13 0 9 15 012356789 17 678 18 0 9 14 57 0 9 簡單版1 只校驗為11位數字 regularexp 0 9 ...