-1

i have a txt file with a lot of lines that look like this:

item_20=_dcf718caec06464ca85dab0775681a87 Select Csr to End ALL

i want to replace everything to the right of the = character with this:

65535 _

but can't figure out how to do so.

thanks for any solutions, babag

BabaG
  • 11
  • 5
  • hmm. if i set the mode to 'regular expression' and type in =?*$ in the 'find' field, then put 65535 _ in the replace field, the 'replace', 'replace all', and 'find all' buttons gray out. – BabaG Dec 03 '20 at 23:31
  • Sorry...my comment has a typo. I have given you an answer below. – Tim Biegeleisen Dec 03 '20 at 23:48

1 Answers1

0

You may try the following find and replace, in regex mode:

Find:    =.*$
Replace: =65535 _
Tim Biegeleisen
  • 502,043
  • 27
  • 286
  • 360