how do i match just spaces and newlines with python regex? -


how match empty spaces including newlines python regex?

hereissometext     thereisspacepreceding 

basically trying match space between 2 groups of text.

four seconds of searching docs have found answer in docs. said, if you're looking matching group whitespace + newlines, here go.

(/s+) 

Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -