I want to replace everything in a line except for alphabets, numbers and periods with whitespaces in c++.
Could anyone please give me a regex in c++ that I can use ?
I was using [^[:alnum:]] till now but that works only for alpha and numeric.
Thank you !
except for alphabets, numbers and periods with whitespaces... can you show us an example?[^[:alnum:].][]only[,],-and `\` needed escaping.