How can I remove the whitespaces before and after a specific char? I want also to remove the whitespaces only around the first occurrence of the specific char. In the examples below, I want to remove the whitespaces before and after the first occurrence of =.
For example for those strings:
something =           is equal to   =   something
something      =      is equal to   =   something
something      =is equal to   =   something
I need to have this result:
something=is equal to   =   something
Is there any regular expression that I can use or should I check for the index of the first occurrence of the char =?