Question:
I wanted to add space between characters/numbers and special characters except for decimal Input:Answer:
You can use(?=[?$%(]|(?<=[A-Za-z])\b\.)
with substitution.re.sub(r”(?=[?$%(]|(?<=[A-Za-z])\b\.)", " ", s) [/code]
If you have better answer, please add a comment about this, thank you!