I have this kind of results:
ª!è[008:58:049]HTTP_CLI:0 - Line written in... And I want to ignore all the beginning characters like ª!è and get only: HTTP_CLI:0 - Line written in... but in a simple regex line.
I tried this: ^[\W0-9]* but is taking the extended ASCII characters plus the time and is not ignoring it, is doing the opposite...
Any help?
Thanks!
re.sub(r'^[^a-zA-Z]+', '', s).re.search("(?<=\]).*",tester).group(0); wheretester = ª!è[008:58:049]HTTP_CLI:0 - Line written in....