如何使用 jQuery 查找两个单词之间的子字符串
答案:使用 JavaScript match()
方法
您可以使用 JavaScript match()
方法来提取两个单词之间的子字符串。
以下示例将向您展示如何使用 match()
方法和简单的 正则表达式
模式来提取两个单词之间的子字符串。
示例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery 获取两个单词之间的子字符串</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
var myStr = "The quick brown fox jumps over the lazy dog.";
var subStr = myStr.match("quick(.*)lazy");
alert(subStr[1]);
});
});
</script>
</head>
<body>
<p>Click the following button to get the substring between the word "quick" and "lazy" from the string "The quick brown fox jumps over the lazy dog."</p>
<button type="button">Get Substring</button>
</body>
</html>
FAQ 相关问题解答
以下是与此主题相关的更多常见问题解答: