Hi there, I want to remove the beginning and ending white spaces in a particular column, I was using Edit Cells/Transform/value.trim().But when I check some of the cells I see that some of the cells still have a blank space at the beginning. I wonder if there is another way to do that.
--
You received this message because you are subscribed to the Google Groups "OpenRefine" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openrefine+...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
if you have non-breaking spaces   on both ends then you might try this instead:
split(escape(value,'xml')," ")[0]-------------