notepad

Sorting a text file by the second value

霸气de小男生 提交于 2020-05-24 05:17:53
问题 I was wondering if there is an option in notepad++ to sort a text file by the second value. I have a txt that looks like this : ('sinon', 143) ('serais', 113) ('sens', 107) ('se', 323) ('sans', 113) ('sais', 702) ('sa', 137) ('s', 382) ('rien', 619) ('quoi', 611) I tried to sort it by the value of the number and not alphabetically with notepad but no sucess so far. I also tried a bit of python but as I'm not really good at coding I didn't suceed here. 回答1: Notepad++ can easily do the sorting.

Sorting a text file by the second value

淺唱寂寞╮ 提交于 2020-05-24 05:17:29
问题 I was wondering if there is an option in notepad++ to sort a text file by the second value. I have a txt that looks like this : ('sinon', 143) ('serais', 113) ('sens', 107) ('se', 323) ('sans', 113) ('sais', 702) ('sa', 137) ('s', 382) ('rien', 619) ('quoi', 611) I tried to sort it by the value of the number and not alphabetically with notepad but no sucess so far. I also tried a bit of python but as I'm not really good at coding I didn't suceed here. 回答1: Notepad++ can easily do the sorting.

Notepad++正则表达式查找替换文本中文字符

[亡魂溺海] 提交于 2020-04-04 13:44:58
测试需求 测试工具中xml配置文件中注释字段包含中文字符,在Win10系统下使用工具中偶尔会出现中文乱码导致配置文件失效。解决方法将配置文件中的中文注释换成英文注释或者直接替换删除。如何将配置文件中的中文字符查找删除? 操作步骤 在Notepad文本工具中使用正则表达式匹配中文字符并替换。当然你可以采用Python写个小工具也无不可。Notepad中使用正则表达式[^\x00-\xff]匹配中文字符。 1、构造包含中文文本用于测试,包含中文字符、普通字符和特殊字符。 2、 中文字符正则表达式匹配:[^\x00-\xff]。 其中\x00-\xff匹配ASCII代码中十六进制代码为00-ff的字符,加个取反^,则就表示表示匹配非单字节的字符,例如汉字,汉字符号等字符集。如下 3、完成替换,中文字符已全部替换。替换后文本如下: 附录 ASCII字符集: http://www.asciitable.com/ 来源: https://www.cnblogs.com/linyfeng/p/12630701.html

[原创].怎样在WPS上实现代码语法高亮

爷,独闯天下 提交于 2020-03-27 06:03:16
本文列举两种可行的方法,在WPS上实现代码语法高亮。其中,第二种方法也可以用到其他编辑软件,譬如Word之类。本文重点讨论第二种方法。 方法1 在WPS官网下载语法高亮插件。 http://www.wps.cn/addons/ThreadView/wdid-6538.htm 图1 WPS语法高亮插件演示 方法2 推荐使用。 前期准备 下载Notepad++。 http://notepad-plus.sourceforge.net/tw/site.htm 实现步骤 1. 使用Notepad++打开或编辑含有代码的文件,如图2所示。 图2 在Notepad++上编辑文件 2. 在Notepad++上,选择“插件——NppExport——Copy RTF to clipboard”标签,复制该代码。 3. 粘贴至WPS,显示效果如图3,所示。 图3 复制的代码在WPS上显示的效果 看到问题没有?显示效果蛮好,但是不支持中文。不要着急,下面就来讨论一下怎样改进。 改进 1. 在Notepad++上,选择“格式——Character sets——Chinese——GB2312(Simplified)”标签。重复实现步骤2、3。现在,我们看看效果。 图4 改进后的效果 说明 Notepad++支持的语言,如图5所示。 图5 Notepad++支持的语言 根据本文所述

notepad正则删除关键词所在行

≡放荡痞女 提交于 2020-03-26 16:59:26
转自:http://www.gangzi.net/article/615.htm 查找: ^.*大师兄.*$ 替换为:(空) 如果不留空行: 查找: ^.*大师兄.*\r?\n 替换为:(空) 注意: Notepad++的[全部替换]受[方向]约束,所以如果想“向下”全部替换,要把光标放到文首。 来源: https://www.cnblogs.com/liujx2019/p/12574665.html