I try to display a message that contains the number inserted in the question, for example when user inserts a number of 12 digits I want to display that 12 digits and a text. Until now:
I created an Entity with pattern (/d{12}) named @ticket_number
An Intent named #myTicket that has as example @ticket_number
Dialog that triggers when #myTicket | @ticket_number and has on context TicketNumer "
<?@ticket_number.literal?>
" and display a message as follows "Do you want to get info for ticket $ticketnumber ?".
The problem is that when I try it the Intent result is irrelevant, the message looks ok but I need to match the Intent. What could I do?