如何把所有数字筛选出来的
- 编程技术
- 2025-01-25 03:22:03
- 1
要筛选出文本中的所有数字,您可以使用多种编程语言中的字符串处理功能。以下是一些常见编程语言中实现这一功能的示例: Python```pythonimport retex...
要筛选出文本中的所有数字,您可以使用多种编程语言中的字符串处理功能。以下是一些常见编程语言中实现这一功能的示例:
Python
```python
import re
text = "我有3个苹果,2个橙子,以及5个香蕉。"
numbers = re.findall(r'd+', text)
print(numbers) 输出: ['3', '2', '5']
```
JavaScript
```javascript
let text = "我有3个苹果,2个橙子,以及5个香蕉。";
let numbers = text.match(/d+/g);
console.log(numbers); // 输出: ['3', '2', '5']
```
Java
```java
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Main {
public static void main(String[] args) {
String text = "我有3个苹果,2个橙子,以及5个香蕉。";
Pattern pattern = Pattern.compile("d+");
Matcher matcher = pattern.matcher(text);
while (matcher.find()) {
System.out.println(matcher.group());
本文链接:http://xinin56.com/bian/329694.html