使用 JavaScript 从字符串中提取数字
javascript中字符串中的数字可以通过match方法提取到数字数组中。此函数将正则表达式作为参数并从字符串中提取数字。提取数字的正则表达式是 (/(\d+)/)。
示例 1:此示例使用 match()函数从字符串中提取数字。
Extract number from string
GeeksforGeeks
String is "jhkj7682834"
Click the button to extract number
输出:
- 单击按钮之前:
- 点击按钮后:
示例 2:此示例使用 match()函数从字符串中提取数字。
Extract number from string
GeeksforGeeks
String is "foo35bar5jhkj88"
The string contains 3 numbers. So the numbers
are stored in an array and print together
Click the button to extract number
输出:
- 单击按钮之前:
- 点击按钮后:
JavaScript 以网页开发而闻名,但它也用于各种非浏览器环境。您可以按照这个 JavaScript 教程和 JavaScript 示例从头开始学习 JavaScript。