1.0.0 • Published 6 years ago

vpa-regex v1.0.0

Weekly downloads
6
License
MIT
Repository
github
Last release
6 years ago

vpa-regex Build Status

VPA Regex Pattern returns a regex that matches Virtual Payment Address (VPA).

Use it for picking up VPA's.

Install

$ npm install vpa-regex

Usage

const vpaRegex = require('vpa-regex');

// Contains a vpa
'siddharth@ybl has requested ₹500'.match(vpaRegex());
//=> ['siddharth@ybl']

'You have paid ₹500 to siddharth@ybl'.match(vpaRegex());
//=> ['siddharth@ybl']

License

MIT