How to use the @microsoft/recognizers-text-sequence.recognizePhoneNumber function in @microsoft/recognizers-text-sequence

To help you get started, we’ve selected a few @microsoft/recognizers-text-sequence examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github BotBuilderCommunity / botbuilder-community-js / libraries / botbuilder-dialog-prompts / src / phone.ts View on Github external
protected async onRecognize(context: TurnContext, state: any, options: PromptOptions): Promise> {
        const result: PromptRecognizerResult = { succeeded: false };
        const activity: Activity = context.activity;
        const utterance: string = activity.text;
        const locale: string = activity.locale || this.defaultLocale || 'en-us';
        const results = recognizers.recognizePhoneNumber(utterance, locale);
        if (results.length > 0 && results[0].resolution != null) {
            try {
                result.succeeded = true;
                result.value = results[0].resolution.value;
            }
            catch(e) {
                console.log(e);
            }
        }
        return result;
    }
}
github BotBuilderCommunity / botbuilder-community-js / libraries / botbuilder-middleware-text-recognizer / src / phone.ts View on Github external
public async onTurn(context: TurnContext, next: () => Promise): Promise {
        if (context.activity.type === ActivityTypes.Message) {
            const phoneNumbers: ModelResult[] = recognizePhoneNumber(context.activity.text, this.defaultLocale);
            const phoneNumberEntities: string[] = [];
            if (phoneNumbers.length > 0) {
                for (const i of phoneNumbers) {
                    phoneNumberEntities.push(i.resolution.value);
                }
                context.turnState.set('phoneNumberEntities', phoneNumberEntities);
            }
        }
        await next();
    }
}