JavaScript正則表達式備忘單附實例

正則表達式或 regex 用於匹配字符串的各個部分。下面是建立的 正則表達式的備忘單。

測試匹配

測試正則表達式

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

測試多項匹配

  • 使用OR運算符(|)

const regex = /yes|no|maybe/;javascript

忽略大小寫

  • 使用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"java

提取數組中的全部匹配項

  • 使用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)git

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

相反,\ B。 它匹配\ b不匹配的全部位置,若是咱們想要找到徹底被單詞字符包圍的搜索模式,則能夠匹配。數組

\Babc\B 僅在模式徹底被單詞字符包圍時才匹配。bash

反向引用 \1

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

([abc])([de])\2\1 咱們能夠用\2 (\3, \4, 等) 來識別第二(第3、第四, 等)捕獲組匹配的相同文本。測試

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

前瞻 後顧

d(?=r) 僅匹配若是後面跟着r的d,但r不會成爲總體正則表達式匹配的一部分spa

(?<=r)d 僅匹配若是前面有r的d,但r不會成爲總體正則表達式匹配的一部分

同理,否認操做符:

d(?!r) 僅匹配若是後面不跟着r的d,但r不會成爲總體正則表達式匹配的一部分

(?<!r)d 僅匹配若是前面沒有r的d,但r不會成爲總體正則表達式匹配的一部分

經常使用實例

空格

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

HTML標籤

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

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

十六進制值

匹配任何有效的hex color值

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

Email (RFC5322)

匹配任何有效的email

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

用戶名

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

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

強密碼

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

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

URL (http, https or ftp)

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

IPv4 地址

匹配任何有效的IP地址

\b(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\b
複製代碼
相關文章
相關標籤/搜索