Put first word in each line in quotes
-
Hi again,
I have the following example
Bit1 “Bit2 Bit3 Bit4 Bit5”
I need to change all lines (over 40,000)
So it looks like this
“Bit1” “Bit2 Bit3 Bit4 Bit5”
Basically I need to put the first word of each line into quotes. Any idea how I can do this with regex?
I should note that after the first word its a tab char not a space that follows it!
Regards,
-
-
@Ekopalypse That worked, thank you!