You can use:, /\*\s+\d*\s+\*/or if you also want to remove the space before the code, assuming it's a tab, use /\*\s+\d*\s+\*/\t. It is not necessary to change this last tab for a certain number of spaces - if you just use it \s+, for example, it will lose your indent that you do not need!
source
share