andreyvital / react-native-android-sms-listener

Allows you to listen for incoming SMS messages using React Native
MIT License
358 stars 99 forks source link

React Native How to auto fetch the OTP in the textfield from the mobile sms #25

Closed SathishSaminathan closed 4 years ago

SathishSaminathan commented 6 years ago

I want to auto fetch the OTP which is coming in the form of SMS

andreyvital commented 6 years ago

Any reference of what getter method should be called to retrieve that info out of the incoming message? Thanks

RishavKumar-3796 commented 5 years ago

let OTPRegex = /^\b\d{ 4}\b/ let final = OTPRegex.test(event.message) alert("message==>" + final);