Click here to Skip to main content
15,910,471 members
Everything / Notepad++

Notepad++

Notepad++

Great Reads

by Bruno Tabbia
A standard Notepad++ plugin that allows you to use an external DLL containing an encoding algorithm to be tried and tested

Latest Articles

by Bruno Tabbia
A standard Notepad++ plugin that allows you to use an external DLL containing an encoding algorithm to be tried and tested

All Articles

Sort by Score

Notepad++ 

22 Feb 2024 by Dave Kreskowiak
I don't know of any tools that will do this, the problem being the addition of a number to another in the replacement value. You will probably have to write your own tool to do this. This is mostly going to be reading a text file and string...
23 Apr 2022 by Bruno Tabbia
A standard Notepad++ plugin that allows you to use an external DLL containing an encoding algorithm to be tried and tested
22 Feb 2024 by Maq47
Hello, I have a C# file that contains 591 5-digit hexadecimal numbers in the format '0x?????', and I wish to replace them with their number plus a set hexadecimal number. How can I do that, even if I have to download new software? I really do not...
22 Feb 2024 by Maq47
Okay, I am seriously facepalming right now. Easiest solution ever. Just add the value directly to every single result in Notepad++: Find: (0x[0-9A-F]{5}); Replace: \1 + 0x617A0; I have no idea why I was trying to edit the numbers themselves...