TOOLS Here is a list of very handy software/utilities/websites making my life much easier. Notepad++ – source code editor which supports multiple languages. You can also can find TM1 add-on for Turbo Integrator processes and Rules (syntax highlighting) TeraCopy – faster and more reliable way to copy files, also it has some additional options: pause,Continue reading “HANDY APPS / SOFTWARE (WINDOWS)”
Category Archives: Tools
NOTEPAD++ REGEX (REGULAR EXPRESSION)
new line: rn tab: t space: s digit: d non-digit: D Examples: Starting from tab, then any characters and the end of line t(.)*rn Two spaces: ss Doesn’t contain string1 .*(?!.*string2.*) Contains string1 but not string2 after: ^.*string1.*(?!.*string2.*)$ Contains string1 then any characters up to the line break: ( string1)+(.)* rn