我想从记事本++的每一行中删除第一个单词(是否包含连字符)。我的档案就像
IL-2 gene expression
CD28 surface receptor
activation through
NF-Kappa B我想要的输出是:
gene expression
surface receptor
through
B发布于 2015-04-17 02:11:42
使用查找/替换-使用正则表达式,这应该找到第一个单词(用连字符)和尾随空格。
^[^\s]+\s
然后在替换字段中不放任何东西。
https://stackoverflow.com/questions/29688602
复制相似问题