Dialogflow 正则表达式实体不捕获消息短语

Dialogflow regex entity does not capture message phrase

我有一条消息发送到 DialogFlow,看起来像:I wanna go to <@U12A0GF233T> 我希望 DialogFlow 可以将 U12A0GF233T 检测为一个实体。
所以我创建了一个实体 @place,其值为 ^\<@([A-Z])\w+\>
但是当收到消息时,dialogFlow 无法检测到 @place.
我在 https://regexr.com/ 上测试了我的正则表达式,它可以工作,但在 DialogFlow 上不起作用。
我是不是犯了什么错误?

基本上 Google Dialogflow 利用 RE2 C++ library for the regular expressions associated with the entity, that might change slightly the general regexp dialect, just follow this RE2 Syntax 页面。

在解释的用例中,我已经完成了正则表达式模式调整:

^*<@([A-Z]\w+)>

\<@([A-Z]\w+)>