Need a little help with string formatting...
I have a string like this:
Bmw m3 fully equipped and low mileage
I need to replace whitespaces with commas, and also at the same time remove all special characters (all non number non letter characters except swedish å ä ö)
Then I need to remove all but the first 5 words, or you could say everything behind the fifth comma sign.
I want something like this from the string above:
Bmw,m3,fully,equipped,and
Thanks