我想在给定字符串后匹配文本。在这种情况下,以“BookTitle”开头但在第一个空格之前的行的文本:
BookTitle:HarryPotter JK Rowling
BookTitle:HungerGames Suzanne Collins
Author:StephenieMeyer BookTitle:Twilight
期望的输出是:
HarryPotter
HungerGames
我试过:"^BookTitle(.*)"
但它给了我匹配 BookTitle: 在行中间的地方,以及空格之后的所有东西。有人帮忙吗?