https://www.oneplus.com/uk/store/lifestyle python 正则匹配出 // 到/中的数据
时间: 2024-03-25 15:34:43 浏览: 51
你可以使用Python的正则表达式模块re来匹配出字符串中 // 到 / 之间的数据。下面是一个示例代码:
```python
import re
url = "https://www.oneplus.com/uk/store/lifestyle"
pattern = r"//(.*?)/"
match = re.search(pattern, url)
if match:
result = match.group(1)
print(result)
```
运行以上代码,将会输出 `www.oneplus.com`。这里使用了非贪婪模式 `.*?` 来匹配最短的字符串。
阅读全文