http://10.222.56.132:8080/sinaauto_page_war_exploded/web/serial/9/#carConfigure 如何获取地址上的 9 字符串
时间: 2023-07-07 07:44:37 浏览: 72
demo_war_exploded.war
您可以使用正则表达式来获取 URL 中的 9 字符串,具体方法如下所示:
```python
import re
url = 'http://10.222.56.132:8080/sinaauto_page_war_exploded/web/serial/9/#carConfigure'
match = re.search(r'/(\d+)/#', url)
if match:
serial_number = match.group(1)
print(serial_number) # 输出:9
else:
print('没有匹配到数字')
```
这里使用了正则表达式 `r'/(\d+)/#'`,其中 `\d+` 表示匹配一个或多个数字,括号内的 `\d+` 表示将匹配到的数字作为一个分组,通过 `group(1)` 方法获取到分组中的内容,即 9。
阅读全文