0 votes

I have large data files where the contents are all text, but the fields on a single line are separated by text. Is there a way to specifically search for a character string in the form of tab+character string+tab? Thanks.

by (20 points)

1 Answer

0 votes

If you switch to regular expression search you should be able to use \t to represent the tab character, e.g.

wordone\twordtwo
by (29.5k points)
...