Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/k4m4/neo-regex
Regular expression for matching NEO addresses.
https://github.com/k4m4/neo-regex
cryptocurrency-regex matcher neo regex regex-match
Last synced: 3 months ago
JSON representation
Regular expression for matching NEO addresses.
- Host: GitHub
- URL: https://github.com/k4m4/neo-regex
- Owner: k4m4
- License: mit
- Created: 2018-02-24T21:51:00.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T16:14:03.000Z (about 2 years ago)
- Last Synced: 2024-10-11T14:19:16.576Z (4 months ago)
- Topics: cryptocurrency-regex, matcher, neo, regex, regex-match
- Language: JavaScript
- Size: 519 KB
- Stars: 4
- Watchers: 3
- Forks: 2
- Open Issues: 7
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# neo-regex [![Build Status](https://travis-ci.org/k4m4/neo-regex.svg?branch=master)](https://travis-ci.org/k4m4/neo-regex) [![XO code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg)](https://github.com/xojs/xo)
> Regular expression for matching NEO addresses
## Install
```
~ ❯❯❯ npm install neo-regex
```## Usage
```js
const neoRegex = require('neo-regex');neoRegex().test('nodejsrocks AQVh2pG732YvtNaxEGkQUei3YA4cvo7d2i');
//=> trueneoRegex({exact: true}).test('nodejsrocks AQVh2pG732YvtNaxEGkQUei3YA4cvo7d2i foo');
//=> falseneoRegex({exact: true}).test('AQVh2pG732YvtNaxEGkQUei3YA4cvo7d2i');
//=> true'nodejsrocks AQVh2pG732YvtNaxEGkQUei3YA4cvo7d2i unicorn AR4QmqYENiZAD6oXe7ftm6eDcwtHk7rVTT rainbow'.match(neoRegex());
//=> ['AQVh2pG732YvtNaxEGkQUei3YA4cvo7d2i', 'AR4QmqYENiZAD6oXe7ftm6eDcwtHk7rVTT']
```## API
### neoRegex([options])
Returns a regex for matching NEO addresses.
#### options.exact
Type: `boolean`
Default: `false` *(Matches any NEO address in a string)*Only match an exact string. Useful with `RegExp#test()` to check if a string is an NEO address.
## Related
- [ethereum-regex](https://github.com/k4m4/ethereum-regex) - Regular expression for matching Ethereum (ETH) addresses.
- [litecoin-regex](https://github.com/k4m4/litecoin-regex) - Regular expression for matching Litecoin (LTC) addresses.
- [bitcoincash-regex](https://github.com/k4m4/bitcoincash-regex) - Regular expression for matching Bitcoin Cash (BCH) addresses.
- [monero-regex](https://github.com/k4m4/monero-regex) - Regular expression for matching Monero (XMR) addresses.
- [dash-regex](https://github.com/k4m4/dash-regex) - Regular expression for matching Dash addresses.
- [ripple-regex](https://github.com/k4m4/ripple-regex) - Regular expression for matching Ripple (XRP) addresses.
- [dogecoin-regex](https://github.com/k4m4/dogecoin-regex) - Regular expression for matching Dogecoin (DOGE) addresses.## License
MIT © [Nikolaos Kamarinakis](https://nikolaskama.me)