-2

I have text file and i want to add string for each row at the start and end of line.

for example:

BINARY_XML_RECORD_PREFIX_DICTIONARY_ATTRIBUTE_Z 

After regex action:

case BINARY_XML_RECORD_PREFIX_DICTIONARY_ATTRIBUTE_Z:

Thanks.

karthik manchala
  • 13,492
  • 1
  • 31
  • 55
Itay Avraham
  • 125
  • 6

1 Answers1

0

You can use the following to match:

(.+)

And replace with:

case $1:

See DEMO

karthik manchala
  • 13,492
  • 1
  • 31
  • 55