I have a string msg like this
msg = "abc 123 \n 456"
I want to do something like this
m = re.match('abc (.*)',msg)
and have m.groups return "123 \n 456"
but currently it only returns "123 "
How would i capture the rest of the string rather than just until the end of the line