We often face a problem called "Non breaking Space" which is a common special character like space and other examples.
We can remove spaces by using TRIM function and in Pentaho ETL we have option to TRIM on both sides as well.
But this non breaking space is different kind of problem where TRIM function will never removes it.
For that we have to use a regular expression to remove "Non breaking space" in the data.
Using "Replace in String" step that is available in Pentaho use \xA0 as a regular expression and then replace with non. it should be some thing like below image. And all non breaking spaces in your data will be removed.
We can remove spaces by using TRIM function and in Pentaho ETL we have option to TRIM on both sides as well.
But this non breaking space is different kind of problem where TRIM function will never removes it.
For that we have to use a regular expression to remove "Non breaking space" in the data.
Using "Replace in String" step that is available in Pentaho use \xA0 as a regular expression and then replace with non. it should be some thing like below image. And all non breaking spaces in your data will be removed.