We have a configuration file for Skype, that on each line it describes the translation for each element of Skype.
The format on each line is as VARIABLE=VALUE.
We decided to remove all values automatically, to do that we used NotePad++.
We pressed Ctrl+H to open up the Replace dialog. In the ‘Find what’ field we wrote =[^\n]*$ and in the ‘Replace with’ we wrote =. In the ‘Search Mode’ option we selected ‘Regular expression’.
The tool looked as follows:
Hitting the ‘Replace All’ button, removed all values from each line as it can be viewed below: =[^\n]*$ instructs NotePad++ to match everything including the = symbol until the end of the line. [^\n]* means to match everything except the new line character. $ matches the end of the line.
We are going to use NotePad++ replace functionality (CTRL+H) to remove all multi-line comments that are enclosed in a pair of /* and */. While in the source file you want to edit, open up the 'Replace' window either from the 'Search' menu or by using CTRL+H. Set 'Search Mode'…
In response to a question in this post we proposed the following method to select a range of lines in Notepad++ using the line numbers: Press Ctrl + G, type the start line and hit Enter to go to the start line. Then go to the menu, click on Edit…
In cases where you are part of a Skype group chat and you do not want to receive notifications for the messages that arrive you can mute most of the notifications without leaving the group and without changing your account status to Do not disturb. Method A Use the Skype…