从记事本++中的每一行的开头删除包含连字符的单词

removing the word containing hyphen from the start of of each line in notepad++

我想删除记事本++中每行的第一个单词(是否包含连字符)。我的文件是

IL-2 gene expression
CD28 surface receptor
activation through
NF-Kappa B

我想要的输出是这样的:

gene expression
surface receptor
through 
B

使用 find/replace - 使用正则表达式,这应该找到第一个单词(带连字符)和尾随 space。

^[^\s]+\s

然后在替换字段中不输入任何内容。