I am trying to create a batch replacement with a linked file. For example my source file is like this (I use [tab] to indicate an actual tab instance):
test[tab]this is some more text
this is a test[tab]this is some more text
this test is here[tab]this is some more text
Now I want to run the replacement
test[tab]test|condition
But only make a change indicated in line 1 (test[tab]this is some more text) and leave the other instances of “test” untouched.
I tried in the linked file to use
^test\t[tab]test|condition
And then used the Regex option in the linked file, but I got a syntax error.
The desired result would be to change line 1 to
test|condition[tab]this is some more text