正则表达式排除前缀字符串?

Alv*_*par 6 regex

如何编写排除特定前缀字符串的正则表达式?

输入示例:"Hello World - How are you today?"

期望的输出:"How are you today?"

要排除的前缀字符串:"Hello world - "

Kei*_*las 4

这将匹配之后的所有内容,

(?<=Hello\sWorld\s-\s).*
Run Code Online (Sandbox Code Playgroud)