如何在 JavaScript RegExp 中查找括号之间的字符?
在本教程中,我们将学习如何通过示例在 JavaScript RegExp 中查找括号之间的字符。
语法
以下是查找 JavaScript RegExp 括号之间字符需要遵循的语法:
[……]
在上述语法中,您可以将要搜索的字符或字符组合替换为点,而方括号是指示使用 JavaScript RegExp 的基本语法。
以下是您可以用来检查括号中不同字符是否存在的一些不同语法:
- [x] - 此语法将检查句子中是否存在字符x。
- [xyz] - 此语法将为您提供a、b、c中任何一个字符或所有字符(即abc)的存在结果。
- [A-Z] - 此语法用于检查从大写A到大写Z范围内的任何字符是否存在。
- [a-z] - 此语法用于检查从小写a到小写z范围内的任何字符是否存在。
- [A-z] - 此语法用于检查从大写A到小写z范围内的任何字符是否存在。
让我们逐一通过代码示例讨论所有这些。
算法
- 步骤 1 - 我们定义一个句子,在其中检查 JavaScript RegExp 括号之间的字符。
- 步骤 2 - 接下来,我们将根据上面讨论的语法,为要检查的特定字符、字符组合或字符范围定义正则表达式。
- 步骤 3 - 在下一步中,我们将使用 JavaScript 的内置match()函数或方法来将原始句子与您定义的正则表达式进行匹配。
- 步骤 4 - 在最后一步中,我们将显示在将原始句子与正则表达式匹配后获得的句子。
示例 1
以下示例将说明如何使用上述语法搜索 JavaScript RegExp 括号中存在的特定字符,即“t”:
<!DOCTYPE html> <html> <body> <h3>Find a character between the brackets in JavaScript RegExp</h3> <p>It will do a global search for the characters that are "t":</p> <p>Original Sentence: tutorials point simply easy learning.</p> <p id="result"></p> <script> let myStr = "tutorials point simply easy learning"; let reg = /[t]/g; let match = myStr.match(reg); document.getElementById("result").innerHTML = match; </script> </body> </html>
我们上面讨论的示例将通过打印t来提供输出,即它在原始句子中出现的次数。它将正则表达式与原始句子进行匹配,并记录t出现的次数,然后它将打印t出现的次数。
示例 2
以下示例将解释如何使用语法查找 JavaScript RegExp 括号中多个字符(a、b、c)的单独或组合出现:
<!DOCTYPE html> <html> <body> <h3>Find a character between the brackets in JavaScript RegExp</h3> <p>It will do a global search for the characters that are "a, b, c":</p> <p>Original Sentence: Hey there, we are checking for character between the brackets of JavaScript RegExp</p> <p id="result"></p> <script> let myStr = "Hey there, we are checking for character, not between the brackets of JavaScript RegExp."; let reg = /[abc]/g; let match = myStr.match(reg); document.getElementById("result").innerHTML = match; </script> </body> </html>
上述示例将输出 a、b 和 c 在句子中单独或组合出现的次数。它使用 JavaScript match 函数获取每个字符在句子中出现的次数,然后打印所有次数。
示例 3
以下示例将说明如何使用上述语法一次查找 JavaScript RegExp 括号中特定范围内的字符:
<!DOCTYPE html> <html> <body> <h3>Find a character between the brackets in JavaScript RegExp</h3> <p>It will do a global search for the characters that are in the range "A-Z":</p> <p>Original Sentence: Hey THere, We are Checking for CHaracter Between the Brackets of JavaScript RegExp</p> <p id="result"></p> <script> let myStr = "Hey THere, We are Checking for CHaracter Between the Brackets of JavaScript RegExp."; let reg = /[A-Z]/g; let match = myStr.match(reg); document.getElementById("result").innerHTML = match; </script> </body> </html>
在上面的示例中,我们使用了语法来查找从A-Z范围内的所有字符的出现次数。它将检查定义范围内的字符,并使用 match 方法获取每个字符出现的次数,然后按照从左到右的顺序逐个打印每个字符。
在以上讨论中,我们学习了如何借助三个不同的示例查找 JavaScript RegExp 括号之间的字符,这些示例分别属于查找字符的不同语法。
广告