I want to add spaces between words example if my word is "babyhealthcare", I want to convert the string into "baby health care" ,
how can I do this,please help !!!!
Solved! Go to Solution.
is there a specific format for every row? or this is changing?
Kindly share some sample rows to understand the requirement correctly.
@Raj sample file :
thanks @BS_THE_ANALYST perfect solution!! but can we do it without Find and replace tool, I don't want to use any external input (for e.g - words.txt)
@arsh011 potentially we can do it without a Find and Replace tool. Basically, we need a way to detect the difference between each of the words:
1) because they are all lower case i.e. "fishbluetable" I needed to attach a dictionary to it to find each word. Because each word can be found by hooking the string up to a dictionary, we can therefore seperate it. Kind of similar to this: "fish-blue-table" we could just separate it by the delimiter "-".
2) if the words are like this "FishBlueTable". We wouldn't even need a find and replace tool. I can clearly see we need to split apart at every Capital letter i.e:
Unfortunately, if the words are all lowercase, I can't think of a way to split them apart without a dictionary.