How to create a regex that will match an arbitrary sequence of spaces and tabs July 10, 2023 by Tarik [ \t]+ will match arbitrary sequences (e.g., spaces followed by tabs followed by more spaces …).