Strip function for whole list

Can I use the strip()-function in the string manipulator for my whole list to delete the whitespace at the beginning and end of every string?

Hi @JulianK98
Looking at the function description, it is precisely what strip() function does

Otherwise you can nest two strip functions, one of them stripStart() working for the beginning and stripEnd() working with the end of the string.

BR

2 Likes

Thank you, found the solution :slight_smile:

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.