Important
语言理解智能服务(LUIS)将于 2026 年 3 月 31 日完全停用。 LUIS 资源创建不可用。 从 2025 年 10 月 31 日开始,LUIS 门户将不再可用。 建议将 LUIS 应用程序迁移到对话语言理解,以便从持续的产品支持和多语言功能中受益。
电子邮件提取包括陈述中的整个电子邮件地址。 此实体已定型,因此不需要将包含电子邮件的陈述示例添加到应用程序意向中。 只有 en-us
语言区域中支持电子邮件实体。
预构建电子邮件解析
查询返回以下实体对象:
please send the information to patti@contoso.com
以下 JSON 的 verbose
参数设置为 false
:
"entities": {
"email": [
"patti@contoso.com"
]
}
以下 JSON 的 verbose
参数设置为 true
:
"entities": {
"email": [
"patti@contoso.com"
],
"$instance": {
"email": [
{
"type": "builtin.email",
"text": "patti@contoso.com",
"startIndex": 31,
"length": 17,
"modelTypeId": 2,
"modelType": "Prebuilt Entity Extractor",
"recognitionSources": [
"model"
]
}
]
}
}
The following example shows the resolution of the builtin.email entity.
"entities": [
{
"entity": "patti@contoso.com",
"type": "builtin.email",
"startIndex": 31,
"endIndex": 55,
"resolution": {
"value": "patti@contoso.com"
}
}
]
Next steps
Learn about the number, ordinal, and percentage.