使用Python的re模块来使用正则表达式查找字符串。
首先,导入re模块:
```python
import re
```
然后,定义一个正则表达式模式:
```python
pattern = r"正则表达式模式"
```
接下来,使用re模块的findall()函数来查找字符串:
```python
result = re.findall(pattern, 字符串)
```
最后,可以打印或处理查找结果:
```python
print(result)
```
以下是一个完整的示例:
```python
import re
pattern = r"hello"
string = "hello world hello python"
result = re.findall(pattern, string)
print(result)
```
输出结果为:
```
['hello', 'hello']
```
注意,正则表达式模式可以根据需要进行自定义,以匹配特定的字符串模式。