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
You may try the following find and replace, in regex mode:
Find: =.*$
Replace: =65535 _