专栏名称: JavaScript
面向JavaScript爱好人员提供:前端最新资讯、原创内容、JavaScript、HTML5、Ajax、jQuery、Node.js等一系列教程和经验分享。
目录
相关文章推荐
51好读  ›  专栏  ›  JavaScript

JS常用正则表达式备忘录

JavaScript  · 公众号  · Javascript  · 2019-05-18 08:46

正文

正则表达式或“regex”用于匹配字符串的各个部分 下面是我创建正则表达式的备忘单。

匹配正则

使用 .test() 方法

  1. let testString = "My test string";

  2. let testRegex = /string/;

  3. testRegex.test(testString);

匹配多个模式

使用操作符号 |

  1. const regex = /yes|no|maybe/;

忽略大小写

使用 i标志表示忽略大小写

  1. const caseInsensitiveRegex = /ignore case/i;

  2. const testString = 'We use the i flag to iGnOrE CasE';

  3. caseInsensitiveRegex.test(testString); // true

提取变量的第一个匹配项

使用 .match() 方法

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

提取数组中的所有匹配项

使用 g 标志

  1. const testString = "Repeat repeat rePeAT";

  2. const regexWithAllMatches = /Repeat/gi;

  3. testString.match(regexWithAllMatches); // ["Repeat", "repeat", "rePeAT"]

匹配任意字符

使用通配符 . 作为任何字符的占位符

  1. // To match "cat", "BAT", "fAT", "mat"

  2. const regexWithWildcard = /.at/gi;

  3. const testString = "cat BAT cupcake fAT mat dog";

  4. const allMatchingWords = testString.match(regexWithWildcard); // ["cat", "BAT", "fAT", "mat"]

用多种可能性匹配单个字符

  • 使用字符类,你可以使用它来定义要匹配的一组字符

  • 把它们放在方括号里 []


  1. //匹配 "cat" "fat" and "mat" 但不匹配 "bat"

  2. const regexWithCharClass = /[cfm]at/g;

  3. const testString = "cat fat bat mat";

  4. const allMatchingWords = testString.match(regexWithCharClass); // ["cat", "fat", "mat"]

匹配字母表中的字母

使用字符集内的范围 [a-z]

  1. const regexWidthCharRange = /[a-e]at/;


  2. const regexWithCharRange = /[a-e]at/;

  3. const catString = "cat";

  4. const batString = "bat";

  5. const fatString = "fat";


  6. regexWithCharRange.test(catString); // true

  7. regexWithCharRange.test(batString); // true

  8. regexWithCharRange.test(fatString); // false

匹配特定的数字和字母

你还可以使用连字符来匹配数字

  1. const regexWithLetterAndNumberRange = /[a-z0-9]/ig;

  2. const testString = "Emma19382";

  3. testString.match(regexWithLetterAndNumberRange) // true

匹配单个未知字符

要匹配您不想拥有的一组字符,使用否定字符集 ^

  1. const allCharsNotVowels = /[^aeiou]/gi;

  2. const allCharsNotVowelsOrNumbers = /[^aeiou0-9]/gi;

匹配一行中出现一次或多次的字符

使用 +  标志

  1. const oneOrMoreAsRegex = /a+/gi;

  2. const oneOrMoreSsRegex = /s+/gi;

  3. const cityInFlorida = "Tallahassee";


  4. cityInFlorida.match(oneOrMoreAsRegex); // ['a', 'a', 'a'];

  5. cityInFlorida.match(oneOrMoreSsRegex); // ['ss'];

匹配连续出现零次或多次的字符

使用星号 *

  1. const zeroOrMoreOsRegex = /hi*/gi;

  2. const normalHi = "hi";

  3. const happyHi = "hiiiiii";

  4. const twoHis = "hiihii";

  5. const bye = "bye";


  6. normalHi.match(zeroOrMoreOsRegex); // ["hi"]

  7. happyHi.match(zeroOrMoreOsRegex); // ["hiiiiii"]

  8. twoHis.match(zeroOrMoreOsRegex); // ["hii", "hii"]

  9. bye.match(zeroOrMoreOsRegex); // null

惰性匹配

  • 字符串中与给定要求匹配的最小部分

  • 默认情况下,正则表达式是贪婪的(匹配满足给定要求的字符串的最长部分)

  • 使用 ? 阻止贪婪模式(惰性匹配 )


  1. const testString = "catastrophe";

  2. const greedyRexex = /c[a-z]*t/gi;

  3. const lazyRegex = /c[a-z]*?t/gi;


  4. testString.match(greedyRexex); // ["catast"]

  5. testString.match (lazyRegex); // ["cat"]

匹配起始字符串模式

要测试字符串开头的字符匹配,请使用插入符号 ^,但要放大开头,不要放到字符集中

  1. const emmaAtFrontOfString = "Emma likes cats a lot.";

  2. const emmaNotAtFrontOfString = "The cats Emma likes are fluffy.";

  3. const startingStringRegex = /^Emma/;


  4. startingStringRegex.test(emmaAtFrontOfString); // true

  5. startingStringRegex.test(emmaNotAtFrontOfString); // false

匹配结束字符串模式

使用 $ 来判断字符串是否是以规定的字符结尾

  1. const emmaAtBackOfString = "The cats do not like Emma";

  2. const emmaNotAtBackOfString = "Emma loves the cats";

  3. const startingStringRegex = /Emma$/;


  4. startingStringRegex.test(emmaAtBackOfString); // true

  5. startingStringRegex.test(emmaNotAtBackOfString); // false

匹配所有字母和数字

使用 \word 简写

  1. const longHand = /[A-Za-z0-9_]+/;

  2. const shortHand = /\w+/;

  3. const numbers = "42";

  4. const myFavoriteColor = "magenta";


  5. longHand.test(numbers); // true

  6. shortHand.test(numbers); // true

  7. longHand.test(myFavoriteColor); // true

  8. shortHand.test(myFavoriteColor); // true

除了字母和数字,其他的都要匹配

用 \W 表示 \w 的反义

  1. const noAlphaNumericCharRegex = /\W/gi;

  2. const weirdCharacters = "!_$!!";

  3. const alphaNumericCharacters = "ab283AD";


  4. noAlphaNumericCharRegex.test(weirdCharacters); // true

  5. noAlphaNumericCharRegex.test(alphaNumericCharacters); // false

匹配所有数字

你可以使用字符集 [0-9],或者使用简写 \d

  1. const digitsRegex = /\d/g;

  2. const stringWithDigits = "My cat eats $20.00 worth of food a week.";


  3. stringWithDigits.match(digitsRegex); // ["2", "0", "0", "0"]

匹配所有非数字

用 \D 表示 \d 的反义

  1. const nonDigitsRegex = /\D/g;

  2. const stringWithLetters = "101 degrees";


  3. stringWithLetters.match(nonDigitsRegex); // [" ", "d", "e", "g", "r", "e", "e", "s"]

匹配空格

使用 \s 来匹配空格和回车符

  1. const sentenceWithWhitespace = "I like cats!"

  2. var spaceRegex = /\s/g;

  3. whiteSpace.





    请到「今天看啥」查看全文