我有一个结构统一的句子,我想使用正则表达式从句子中挑选出某些单词。例如句子结构如下:
["Take the"] + [train] + ["bound train to"] + [stop]
其中引号中的单词是硬编码的,而没有引号的单词是可变的。例如,基于该句子结构,以下句子适用:
- Take the L bound train to 1st street.
- Take the 1 bound train to neverland.
我需要帮助想出一个与此匹配的正则表达式模式,并允许我解析出 [train] 和 [stop]。我的正则表达式 kunfu 很弱,我需要一些帮助。