How to convert a empty string into a string ie i have a column with names and in that column there are empty strings I want those empty strings to be removed and renamed as UNKNOWN.
Before :
ID Name Age
1 15
2 Sam 20
3 47
4 Smith 25
After :
ID Name Age
1 UNKNOWN 15
2 Sam 20
3 UNKNOWN 47
4 Smith 25