Trimming the whitespace that is trailing ahead or behind a string field

desbest

Member
I have a feature request
It's about adding an operation to trim the fields, so the whitespace or blanks at the beginning and end of each field (most likely strings), is then removed.

So
Code:
 apples
bananas
cherries
Should all become

Code:
apples
bananas
cherries
runabase operations.png
 

Anti

Administrator
Staff member
All data in our program is automatically removed from extra spaces at the beginning and end, when saving the record.
This problem can only occur when importing from other programs. In this case, first use the trim functions in Excel or Calc, and then import from the correct csv file.
 
Top