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

timeout - Handshake_timeout on RabbitMQ using python and pika from remote vm -

gcc - MinGW's ld cannot perform PE operations on non PE output file -

c# - Search and Add Comment with OpenXML for Word -