I have a text file to process, with huge number of lines like this:
000AA Sylvester Stallone
000AD Demi Moore
I would add for each word, a single quotation mark like this:
'000AA' 'Sylvester' 'Stallone'
'000AD' 'Demi' 'Moore'
I suppose that the best(and maybe the only way?) is to use notepadd++ find/replace with regex, but unluckily I have not enough knowledge. Please, there is someone can help me? This will be a huge time saver help!!
\S+and replace with'$0', is that enough?