我在notepad ++编辑器中有如下文字。
Sample Text in the~
File
在上面的文本中,当我们遇到~
符号时,信息会流入下一行。文中有几种情况。
如何删除特殊字符~
并将其作为记事本++中的单行
所以,我的最终输出是Sample Text in theFile
我知道它可以通过记事本++的正则表达式来完成,但不知道该怎么做。
答案 0 :(得分:2)
在替换屏幕(CTRL + H)中,选中正则表达式框。按如下方式填写输入框:
找到:
(function (window) {
'use strict';
function defineABC() {
}
defineABC.prototype.alert3 = function() {
alert("hello prototype is working outside constructor");
};
defineABC.prototype.alert = function() {
alert("hello this is working");
};
defineABC.prototype.alert2 = function() {
alert("hello prototype is working inside constructor");
};
if (typeof(ABC) === 'undefined') {
window.ABC = new defineABC();
}
})(window);
替换为:
~\R