JavaScript正規表示式備忘單附例項

Ioodu發表於2019-02-26

JavaScript正規表示式備忘單附例項
正規表示式或 regex 用於匹配字串的各個部分。下面是建立的正規表示式的備忘單。

測試匹配

測試正規表示式

  • 使用該.test()方法
let testString = "My test string";
let testRegex = /string/;
testRegex.test(testString);
複製程式碼

測試多項匹配

  • 使用OR運算子(|)

const regex = /yes|no|maybe/;

忽略大小寫

  • 使用i標誌不區分大小寫
const caseInsensitiveRegex = /ignore case/i;
const testString = 'We use the i flag to iGnOrE CasE';
caseInsensitiveRegex.test(testString); // true
複製程式碼

將第一個匹配提取到變數

  • 使用該.match()功能

const match = "Hello World!".match(/hello/i); // "Hello"

提取陣列中的所有匹配項

  • 使用g標誌
const testString = "Repeat repeat rePeAT";
const regexWithAllMatches = /Repeat/gi;
testString.match(regexWithAllMatches); // ["Repeat", "repeat", "rePeAT"]
複製程式碼

匹配

任何字元

  • 使用萬用字元.作為任何字元的佔位符
// To match "cat", "BAT", "fAT", "mat"
const regexWithWildcard = /.at/gi;
const testString = "cat BAT cupcake fAT mat dog";
const allMatchingWords = testString.match(regexWithWildcard); // ["cat", "BAT", "fAT", "mat"]
複製程式碼

匹配具有多種可能性的單個字元

  • 使用字元類,您可以使用它來定義要匹配的一組字元
  • 你把它們放在方括號內 []
// Match "cat" "fat" and "mat" but not "bat"
const regexWithCharClass = /[cfm]at/g;
const testString = "cat fat bat mat";
const allMatchingWords = testString.match(regexWithCharClass); // ["cat", "fat", "mat"]
複製程式碼

匹配字母表的字母

  • 使用字符集中的範圍 [a-z]
const regexWithCharRange = /[a-e]at/;
const catString = "cat";
const batString = "bat";
const fatString = "fat";

regexWithCharRange.test(catString); // true
regexWithCharRange.test(batString); // true
regexWithCharRange.test(fatString); // false
複製程式碼

匹配特定的數字和字母

  • 您還可以使用連字元匹配數字
const regexWithLetterAndNumberRange = /[a-z0-9]/ig;
const testString = "Emma19382";
testString.match(regexWithLetterAndNumberRange) // true
複製程式碼

匹配單個未知字元

  • 要匹配你不希望有的字符集,使用否定的字符集.
  • 要排除字符集,請使用插入符號 ^
const allCharsNotVowels = /[^aeiou]/gi;
const allCharsNotVowelsOrNumbers = /[^aeiou0-9]/gi;
複製程式碼

匹配連續出現一次或多次的字元

  • 使用+符號
const oneOrMoreAsRegex = /a+/gi;
const oneOrMoreSsRegex = /s+/gi;
const cityInFlorida = "Tallahassee";

cityInFlorida.match(oneOrMoreAsRegex); // ['a', 'a', 'a'];
cityInFlorida.match(oneOrMoreSsRegex); // ['ss'];
複製程式碼

匹配連續出現零次或多次的字元

  • 使用星號 *
const zeroOrMoreOsRegex = /hi*/gi;
const normalHi = "hi";
const happyHi = "hiiiiii";
const twoHis = "hiihii";
const bye = "bye";

normalHi.match(zeroOrMoreOsRegex); // ["hi"]
happyHi.match(zeroOrMoreOsRegex); // ["hiiiiii"]
twoHis.match(zeroOrMoreOsRegex); // ["hii", "hii"]
bye.match(zeroOrMoreOsRegex); // null
複製程式碼

懶惰匹配

  • 符合給定要求的字串的最小部分
  • 預設情況下,正規表示式是貪婪的(匹配滿足給定要求的字串的最長部分)
  • 使用?角色進行懶惰匹配
const testString = "catastrophe";
const greedyRexex = /c[a-z]*t/gi;
const lazyRegex = /c[a-z]*?t/gi;

testString.match(greedyRexex); // ["catast"]
testString.match(lazyRegex); // ["cat"]
複製程式碼

匹配起始字串模式

  • 要測試字串開頭的字元匹配,請使用插入符號^,但不要使用字符集
const emmaAtFrontOfString = "Emma likes cats a lot.";
const emmaNotAtFrontOfString = "The cats Emma likes are fluffy.";
const startingStringRegex = /^Emma/;

startingStringRegex.test(emmaAtFrontOfString); // true
startingStringRegex.test(emmaNotAtFrontOfString); // false
複製程式碼

匹配結束字串模式

  • 使用$正規表示式末尾的美元符號來檢查字串末尾是否存在
const emmaAtBackOfString = "The cats do not like Emma";
const emmaNotAtBackOfString = "Emma loves the cats";
const startingStringRegex = /Emma$/;

startingStringRegex.test(emmaAtBackOfString); // true
startingStringRegex.test(emmaNotAtBackOfString); // false
複製程式碼

匹配所有字母和數字

  • 使用\word速記
const longHand = /[A-Za-z0-9_]+/;
const shortHand = /\w+/;
const numbers = "42";
const myFavoriteColor = "magenta";

longHand.test(numbers); // true
shortHand.test(numbers); // true
longHand.test(myFavoriteColor); // true
shortHand.test(myFavoriteColor); // true
複製程式碼

除了字母和數字之外的所有內容

  • 您可以使用相反的\w用\W
const noAlphaNumericCharRegex = /\W/gi;
const weirdCharacters = "!_$!!";
const alphaNumericCharacters = "ab283AD";

noAlphaNumericCharRegex.test(weirdCharacters); // true
noAlphaNumericCharRegex.test(alphaNumericCharacters); // false
複製程式碼

匹配所有數字

  • 您可以使用字符集[0-9],也可以使用速記\d
const digitsRegex = /\d/g;
const stringWithDigits = "My cat eats $20.00 worth of food a week.";

stringWithDigits.match(digitsRegex); // ["2", "0", "0", "0"]
複製程式碼

匹配所有非數字

  • 您可以使用相反的\d用\D
const nonDigitsRegex = /\D/g;
const stringWithLetters = "101 degrees";

stringWithLetters.match(nonDigitsRegex); // [" ", "d", "e", "g", "r", "e", "e", "s"]
複製程式碼

匹配空格

  • 使用\s匹配空格和回車
const sentenceWithWhitespace = "I like cats!"
var spaceRegex = /\s/g;
whiteSpace.match(sentenceWithWhitespace); // [" ", " "]
複製程式碼

匹配非空格

  • 您可以使用相反的\s用\S
const sentenceWithWhitespace = "C a t"
const nonWhiteSpaceRegex = /\S/g;
sentenceWithWhitespace.match(nonWhiteSpaceRegex); // ["C", "a", "t"]
複製程式碼

匹配字元數

  • 您可以使用指定一行中的特定字元數 {lowerBound, upperBound}
const regularHi = "hi";
const mediocreHi = "hiii";
const superExcitedHey = "heeeeyyyyy!!!";
const excitedRegex = /hi{1,4}/;

excitedRegex.test(regularHi); // true
excitedRegex.test(mediocreHi); // true
excitedRegex.test(superExcitedHey); //false
複製程式碼

匹配最少的字元數

  • 您只能定義最少數量的字元要求 {lowerBound,}
  • 這稱為數量說明符
const regularHi = "hi";
const mediocreHi = "hiii";
const superExcitedHey = "heeeeyyyyy!!!";
const excitedRegex = /hi{2,}/;

excitedRegex.test(regularHi); // false
excitedRegex.test(mediocreHi); // true
excitedRegex.test(superExcitedHey); //false
複製程式碼

匹配確切數量的字元數

  • 您可以使用指定確切的字元要求數 {requiredCount}
const regularHi = "hi";
const bestHi = "hii";
const mediocreHi = "hiii";
const excitedRegex = /hi{2}/;

excitedRegex.test(regularHi); // false
excitedRegex.test(bestHi); // true
excitedRegex.test(mediocreHi); //false
複製程式碼

匹配全部或不匹配的字元

  • 要檢查字元是否存在,請使用 ?
const britishSpelling = "colour";
const americanSpelling = "Color";
const languageRegex = /colou?r/i;

languageRegex.test(britishSpelling); // true
languageRegex.test(americanSpelling); // true
複製程式碼

高階內容

邊界匹配 \b \B

\babc\b 執行單詞邊界匹配(^\w|\w$|\W\w|\w\W)

\ b表示像插入符號(它類似於$和^)的匹配位置,其中一側是單詞字元(如\ w)而另一側不是單詞字元(例如它可能是字串的開頭或空格字元)。

相反,\ B。 它匹配\ b不匹配的所有位置,如果我們想要找到完全被單詞字元包圍的搜尋模式,則可以匹配。

\Babc\B 僅在模式完全被單詞字元包圍時才匹配。

反向引用 \1

([abc])\1 使用\1匹配第一個捕獲組匹配的相同文字

([abc])([de])\2\1 我們可以用\2 (\3, \4, 等) 來識別第二(第三、第四, 等)捕獲組匹配的相同文字。

(?<foo>[abc])\k<foo> 我們將命名foo放到組中,稍後我們引用它(\ k )。 結果與上面第一個正規表示式相同。

前瞻 後顧

d(?=r) 僅匹配如果後面跟著r的d,但r不會成為整體正規表示式匹配的一部分

(?<=r)d 僅匹配如果前面有r的d,但r不會成為整體正規表示式匹配的一部分

同理,否定操作符:

d(?!r) 僅匹配如果後面不跟著r的d,但r不會成為整體正規表示式匹配的一部分

(?<!r)d 僅匹配如果前面沒有r的d,但r不會成為整體正規表示式匹配的一部分

常用例項

空格

JavaScript正規表示式備忘單附例項
JavaScript正規表示式備忘單附例項

^[\s]*(.*?)[\s]*$
複製程式碼

HTML標籤

匹配任何有效的HTML標籤和相應的結束標籤

JavaScript正規表示式備忘單附例項

JavaScript正規表示式備忘單附例項

<([a-z]+)([^<]+)*(?:>(.*)<\/\1>|\s+\/>)
複製程式碼

十六進位制值

匹配任何有效的hex color值

JavaScript正規表示式備忘單附例項

JavaScript正規表示式備忘單附例項

\B#(?:[a-fA-F0–9]{6}|[a-fA-F0–9]{3})\b
複製程式碼

Email (RFC5322)

匹配任何有效的email

JavaScript正規表示式備忘單附例項

JavaScript正規表示式備忘單附例項

\b[\w.!#$%&’*+\/=?^`{|}~-]+@[\w-]+(?:\.[\w-]+)*\b
複製程式碼

使用者名稱

長度至少3位,至多16位,由字母,數字或破折號組成。

JavaScript正規表示式備忘單附例項

JavaScript正規表示式備忘單附例項

/^[a-z0-9_-]{3, 16}$/
複製程式碼

強密碼

長度至少6位,至少有一位大寫字母,至少有一位小寫字母,至少有一位數字,至少有一位特俗字元。

JavaScript正規表示式備忘單附例項

JavaScript正規表示式備忘單附例項

(?=^.{6,}$)((?=.*\w)(?=.*[A-Z])(?=.*[a-z])(?=.*[0-9])(?=.*[|!"$%&\/\(\)\?\^\'\\\+\-\*]))^.*
複製程式碼

URL (http, https or ftp)

JavaScript正規表示式備忘單附例項

JavaScript正規表示式備忘單附例項

^(((https?|ftp):\/\/)?([\w\-\.])+(\.)([\w]){2,4}([\w\/+=%&_\.~?\-]*))*$
複製程式碼

IPv4 地址

匹配任何有效的IP地址

JavaScript正規表示式備忘單附例項

JavaScript正規表示式備忘單附例項

\b(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\b
複製程式碼

相關文章