I tried assigning variable of tab_chr="\t" and then doing
replace(string_in,tab_chr," ")
But that didnt work.
Any ideas?
Thanks
Develop games in your browser. Powerful, performant & highly capable.
Use RegexReplace
RegexReplace(TextWithTabs,"\t+","gm"," ")