Seems simple but I can't get the right syntax.
I want to add chars after a string occurrance where line begins with K: then wildcard for one or more chars before end of line
sample case
K:G
-> K:G",
or
K:Ador
-> K:Ador",
FIND: K:+[A-Za-z]+$
REPLACE: K:+[A-Za-z]+",$
When I run this, the result clears the actual values and replaces with the literal regex values- giving me K:+[A-Za-z]+",$
which is not what I want
How can I retain the wildcard values after replace?