正規表示式

2021-09-01 18:24:56 字數 1250 閱讀 3981

資料參考:正規表示式

1、匹配指定字串開始,例如:

const str1 = "literally can't even";

const str2 = "figuratively can't even";

const str3 = "literally whatever"

const reg = /^literally/

console.log(reg.test(str1)) // true

console.log(reg.test(str2)) // false

console.log(reg.test(str3)) // false

2、匹配指定字串結束,例如:

const str1 = "this shiitake is bananas";

const str2 = "bananas";

const str3 = "nothing";

const reg = /bananas$/;

console.log(reg.test(str1)); // true

console.log(reg.test(str2)); // true

console.log(reg.test(str3)); // false

3、匹配開頭非數字,第二個字元非大寫字母,例如:

const str1 = "1a";

const str2 = "a1";

const str3 = "abc";

const str4 = "abc";

const str5 = "555";

const str6 = "5z";

const str7 = "...";

const reg = /^\d[^a-d]/;

console.log(reg.test(str1)); // false

console.log(reg.test(str2)); // true

console.log(reg.test(str3)); // false

console.log(reg.test(str4)); // true

console.log(reg.test(str5)); // false

console.log(reg.test(str6)); // false

console.log(reg.test(str7)); // true

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

非負整數 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...

正規表示式 表示式

網域名稱 a za z0 9 a za z0 9 a za z0 9 a za z0 9 interneturl a za z s 或 http w w w 手機號碼 13 0 9 14 5 7 15 0 1 2 3 5 6 7 8 9 18 0 1 2 3 5 6 7 8 9 d 號碼 x x x...

Linux正規表示式 編寫正規表示式

為了所有實用化的用途,你可以通過使用程式產生正確的結果。然而,並不意味著程式總是如你所願的那樣正確地工作。多數情況下,如果程式不能產生想要的輸出,可以斷定真正的問題 排除輸入或語法錯誤 在於如何描述想要的東西。換句話說,應該考慮糾正問題的地方是描述想要的結果的表示式。表示式不完整或者公式表示得不正確...