'd:\\git\\sesame\\sesame\\resource\\animation\\1\\1_tex.png',这个字符串用正则匹配来捕获1_tex.png
时间: 2023-10-02 11:13:02 浏览: 79
可以使用正则表达式来匹配并捕获字符串中的"1_tex.png"。下面是一个示例代码:
```python
import re
pattern = r'\\([^\\]+)$'
string = r'd:\git\sesame\sesame\resource\animation\1\1_tex.png'
match = re.search(pattern, string)
if match:
captured_string = match.group(1)
print(captured_string)
```
输出结果为: "1_tex.png"。
阅读全文