I am trying to find a regular expression for find all the lines which starts with @ and has a tab ‘\t’ in some random position.
for example:
@This is example line (a tab char) which has tab in somewhere midle.
I tried googleing but nothing seems of my help right now.
Use this regular expression:
And enable multiline option, i.e.:
(?m)^@.*\t