我需要在句子“Hello, call me XXX.”中找到一个子字符串。这句话可能真的很长,唯一能帮助我识别名字是什么的事实是 name 总是在 fromat 中"call me"+space+name"+dot
。尽管如此,这句话也可能看起来像hello, call me. call me xxx.
Call me John. ⇒ John
Call me Call me John. ⇒ prohibited - confusing
Call me. Call me John. ⇒ John
Call me Call me John. ⇒ John
Call me Peter .Call me John. ⇒ John
Call me Peter. Call me John. ⇒ prohibited - more then one name...
名称可以是除 \r、\n、\0 和点之外的任何字符序列。
如果有人可以帮助我定义正则表达式,我将不胜感激。我试图弄清楚两个多小时,但没有任何成功......