I have this text:
"('John', 0.55)\n"
regex: [^\n]([A-z]+)
and would like to only keep the name John (no quotes or whatsoever). I managed to obtain John, but I also get the \n unfortunately: http://www.regextester.com/?fam=98328
How can I remove the latter?
Thanks