How can I append a prefixion or suffix in many selected lines only once?
such as follow,
(1)
ALGERIA_213,
AMERICAN_SAMOA_1684,
ANDORRA_376,
ANGOLA_244,
ANGUILLA_1264,
ANTARCTICA_672,
ANTIGUA_AND_BARBUDA_1268,
ARGENTINA_54,
ARMENIA_374,
change to:
_STR_COUNTRY_ALGERIA_213,
_STR_COUNTRY_AMERICAN_SAMOA_1684,
_STR_COUNTRY_ANDORRA_376,
_STR_COUNTRY_ANGOLA_244,
_STR_COUNTRY_ANGUILLA_1264,
_STR_COUNTRY_ANTARCTICA_672,
_STR_COUNTRY_ANTIGUA_AND_BARBUDA_1268,
_STR_COUNTRY_ARGENTINA_54,
_STR_COUNTRY_ARMENIA_374,
(2)
"Algeria(+213)
"American Samoa(+1684)
"Andorra(+376)
"Angola(+244)
"Anguilla(+1264)
"Antarctica(+672)
"Antigua and Barbuda(+1268)
"Argentina(+54)
"Armenia(+374)
change to:
"Algeria(+213)",
"American Samoa(+1684)",
"Andorra(+376)",
"Angola(+244)",
"Anguilla(+1264)",
"Antarctica(+672)",
"Antigua and Barbuda(+1268)",
"Argentina(+54)",
"Armenia(+374)",
help, thank you very much !