3
1
I have thousands of data in my excel file, they are scraped data from various websites, initially stored in CSV files then migrated into Excel. This data is for use of my web server.
Now my problem is that there are horizontal tabs
hidden somewhere among many spaces
, and they are causing a critical problem for my web server.
I'll give an example to clarify here:
Data in Excel: "This is a cell"
Data when encoded to be used as url parameter: "This%20is%09a%20cell"
You can clearly see that one of the spaces in between has been encoded to %09, which represents a horizontal tab. This is causing a severe problem from my server and I NEED TO identify and replace this.
So, how would I go about finding a horizontal tab in Excel?
Do you need to retain the spaces? – Burgi – 2015-11-25T09:51:29.753