使用 notepad++ 从文档中提取文本

使用 notepad++ 从文档中提取文本

我有一个文本文件,需要从中提取特定的数据元素。

示例文本:

你好ABK>Z48812~HIAPR>Z48812~HI*ABF>I2510*ABF>K810*ABF>I10*ABF>J449*ABF>F329*ABF>F419*ABF>I252~NM1*71*1*Darbinian*Sevak****XX*1306859178~LX*1~SV2*0551*HC>G0154*250*UN*4~DTP*472*D8*20180202~REF*6R*74990814~HL*3*1*22*0~HIABK>N390~HIAPR>N390~HI*ABF>B9620*ABF>B961*ABF>N319*ABF>G8220*ABF>S12300S*ABF>G9520*ABF>Z1612~NM1*71*1*Boonyaputthikul*Robert****XX*1700198801~LX*1~SV2*0551*HC>G0154*250*UN*4~DTP*472*D8*20180125~REF*6R*74990810~

我想要提取:

达尔比尼安·塞瓦克 1306859178

Boonyaputthikul Robert 1700198801

如何用 notepad++ 做到这一点?

答案1

使用 Notepad++ 无法一步完成此操作,您可以执行以下操作:

第一步:

  • Ctrl+H
  • 找什么:(?:^|\G).+?NM1\*71\*1\*(.+?)\*{4}XX\*(\d+)
  • 用。。。来代替:$1 $2\n
  • 检查环绕
  • 检查正则表达式
  • 请勿检查. matches newline
  • Replace all

解释:

(?:             : non capture group
  ^             : beginning of line
 |              : R
  \G            : position of last match
)               : end group
.+?             : 1 or more any character, not greedy
NM1\*71\*1\*    : literally "MN1*71*1*", asterisk have to be escaped
(.+?)           : group 1, 1 or more any character, not greedy
\*{4}XX\*       : 4 asterisks, XX, then 1 asterisk 
(\d+)           : group 2, 1 or more digit

替代品:

$1      : content of group 1
        : a space
$2      : content of group 2
\n      : line feed, you could change it for the linebreak you need

给定示例的结果:

Darbinian*Sevak 1306859178
Boonyaputthikul*Robert 1700198801
LX*1~SV2*0551*HC>G0154*250*UN*4~DTP*472*D8*20180125~REF*6R*74990810~

第二步,您必须删除最后一行。

相关内容