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
Post a Comment