python - Cleaner regex for removing characters before dot or slash -


is there cleaner regex following? know can search 2 different regex @ same time combining them |.

i'm removing before first occurrence of . or - following regex , space after these.

re.sub("^[^-]*- |^[^.]*. ", "", string) 

re.sub(r"^[^.-]*[.-]\s*","",some_string) 

you can try this.


Comments

Popular posts from this blog

twig - Using Twigbridge in a Laravel 5.1 Package -

firemonkey - How do I make a beep sound in Android using Delphi and the API? -

jdbc - Not able to establish database connection in eclipse -