How to identify numbers uniquely in user input within RASA Framework?

I have a requirement of first identifying a number in the user message based on which an intent gets triggered. Can I use the Slot feature in this case?

@Prskriti If I understand your use case correctly, you want to first identify a number and then based on the value of the number you want to trigger an intent in that particular user turn? Looks very similar to what this post is trying to do. Basically, you need to create an intent which has some examples of user messages of how users should express a number and then extract the number as an entity. You can create a slot with the same name as that of entity to use it in your stories/custom actions if you would like to.