标签: python
如何使用re.split()根据正斜杠和反斜杠拆分路径名?例如:temp = re.split('[/]',somepath)用于转发斜杠,但不能用于反斜杠。我什至尝试像\一样转义反斜杠,但没有运气
temp = re.split('[/]',somepath)