I have some String like this:
"this is a string like #{aa} and#{bb}. "
"#{cc}this is another str#{dd}ing..."
I want to change these String like this:
"this is a string like ? and?." "aa" "bb"
"?this is another str?ing..." "cc" "dd"
I tried to use regular expressions to split these string and failed.
What should I do?