I have to explode the following string based on "\". The probelm is, string.split('\') does not work and the re.split("\/",text).
I have no idea.
the string is simple
D123D\user.name
the first part is sometimes longer.
re.split(r"\",text)
should work as well