I am trying to filter out all excess space in between a string. It looks something like this:
value1 value2 value3
Would the correct search and replace be:
s/\s+// #this is the one I think it might be
or:
s/\s(.*)//
or someting else?
Bear in mine, I am running these trough a split delimited by a single space after this. Can anyone reaffirm me on this?
value1 value2 value3
Would the correct search and replace be:
s/\s+// #this is the one I think it might be
or:
s/\s(.*)//
or someting else?
Bear in mine, I am running these trough a split delimited by a single space after this. Can anyone reaffirm me on this?