regex
用於匹配字符串的各個部分。下面是建立的
正則表達式的備忘單。
let testString = "My test string";
let testRegex = /string/;
testRegex.test(testString);
複製代碼
const regex = /yes|no|maybe/;
javascript
const caseInsensitiveRegex = /ignore case/i;
const testString = 'We use the i flag to iGnOrE CasE';
caseInsensitiveRegex.test(testString); // true
複製代碼
const match = "Hello World!".match(/hello/i); // "Hello"
java
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"]
複製代碼
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
複製代碼
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
複製代碼
const noAlphaNumericCharRegex = /\W/gi;
const weirdCharacters = "!_$!!";
const alphaNumericCharacters = "ab283AD";
noAlphaNumericCharRegex.test(weirdCharacters); // true
noAlphaNumericCharRegex.test(alphaNumericCharacters); // false
複製代碼
const digitsRegex = /\d/g;
const stringWithDigits = "My cat eats $20.00 worth of food a week.";
stringWithDigits.match(digitsRegex); // ["2", "0", "0", "0"]
複製代碼
const nonDigitsRegex = /\D/g;
const stringWithLetters = "101 degrees";
stringWithLetters.match(nonDigitsRegex); // [" ", "d", "e", "g", "r", "e", "e", "s"]
複製代碼
const sentenceWithWhitespace = "I like cats!"
var spaceRegex = /\s/g;
whiteSpace.match(sentenceWithWhitespace); // [" ", " "]
複製代碼
const sentenceWithWhitespace = "C a t"
const nonWhiteSpaceRegex = /\S/g;
sentenceWithWhitespace.match(nonWhiteSpaceRegex); // ["C", "a", "t"]
複製代碼
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
複製代碼
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
複製代碼
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
複製代碼
\babc\b
執行單詞邊界匹配(^\w|\w$|\W\w|\w\W)
。git
\ b表示像插入符號(它相似於$和^)的匹配位置,其中一側是單詞字符(如\ w)而另外一側不是單詞字符(例如它多是字符串的開頭或空格字符)。正則表達式
相反,\ B。 它匹配\ b不匹配的全部位置,若是咱們想要找到徹底被單詞字符包圍的搜索模式,則能夠匹配。數組
\Babc\B
僅在模式徹底被單詞字符包圍時才匹配。bash
([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標籤和相應的結束標籤
<([a-z]+)([^<]+)*(?:>(.*)<\/\1>|\s+\/>)
複製代碼
匹配任何有效的hex color值
\B#(?:[a-fA-F0–9]{6}|[a-fA-F0–9]{3})\b
複製代碼
匹配任何有效的email
\b[\w.!#$%&’*+\/=?^`{|}~-]+@[\w-]+(?:\.[\w-]+)*\b
複製代碼
長度至少3位,至多16位,由字母,數字或破折號組成。
/^[a-z0-9_-]{3, 16}$/
複製代碼
長度至少6位,至少有一位大寫字母,至少有一位小寫字母,至少有一位數字,至少有一位特俗字符。
(?=^.{6,}$)((?=.*\w)(?=.*[A-Z])(?=.*[a-z])(?=.*[0-9])(?=.*[|!"$%&\/\(\)\?\^\'\\\+\-\*]))^.* 複製代碼
^(((https?|ftp):\/\/)?([\w\-\.])+(\.)([\w]){2,4}([\w\/+=%&_\.~?\-]*))*$
複製代碼
匹配任何有效的IP地址
\b(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\b
複製代碼