I have a string like this:
#ud %+^'()=%^'K%J+^K$#££½6 u896%+& 547900
I want to capture this #ud in a first variable and anything else that comes after, in a second variable, but not including the first space.
PS: #ud can change to #u64, #d and etc.
How do I do it in a clean and simple way?
([^\s]+)\s?(.*)? regex101.com/r/qM0hO1/1