hi, how can i quickly delete all the empty spaces and stuff like the guy in the video below at 46:49
Removing spaces and new lines and etc
jfcherng
#2
he is doing un-indent for deleting leading spaces. and use regex replace \n
to nothing to make things into a single line.
you can just use regex replace \s
to nothing to do all of them in a single step, which removes ALL spaces.
1 Like