# monero-regex

> Regular expression for matching Monero (XMR) addresses.

Latest version **1.0.9** (published 2020-08-08) · MIT license · 0 weekly downloads

## Install

```sh
npm install monero-regex
pnpm add monero-regex
yarn add monero-regex
bun add monero-regex
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.9 |
| Published | 2020-08-08 |
| First published | 2018-02-24 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=10 |
| Dependencies | 0 |
| Unpacked size | 5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 10 |
| Author | Nikolaos Kamarinakis |
| Maintainers | k4m4 |
| Keywords | monero, address, regex |

## Links

- npm: https://www.npmjs.com/package/monero-regex
- Repository: https://github.com/k4m4/monero-regex
- Homepage: https://github.com/k4m4/monero-regex#readme
- Issues: https://github.com/k4m4/monero-regex/issues
- npm.io page: https://npm.io/package/monero-regex

## Recent versions

- 1.0.9 (latest) — 2020-08-08
- 1.0.8 — 2020-04-04
- 1.0.7 — 2019-12-22
- 1.0.6 — 2019-07-13
- 1.0.5 — 2019-07-13
- 1.0.4 — 2019-06-05
- 1.0.3 — 2019-02-10
- 1.0.2 — 2018-10-12
- 1.0.1 — 2018-02-24
- 1.0.0 — 2018-02-24

## README

# monero-regex [![Build Status](https://travis-ci.org/k4m4/monero-regex.svg?branch=master)](https://travis-ci.org/k4m4/monero-regex) [![XO code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg)](https://github.com/xojs/xo)

> Regular expression for matching Monero (XMR) addresses


## Install

```
~ ❯❯❯ npm install monero-regex
```


## Usage

```js
const moneroRegex = require('monero-regex');

moneroRegex().test('nodejsrocks 47BnvD18P456f4KJUBKPS3Rqa97LrTaeqJ5NFYmjQM6nVoz6TBv4rJ24GZk883BNo22fAKbr8BSuTjhQC6K7DsSJFa8SHDs');
//=> true

moneroRegex({exact: true}).test('nodejsrocks 47BnvD18P456f4KJUBKPS3Rqa97LrTaeqJ5NFYmjQM6nVoz6TBv4rJ24GZk883BNo22fAKbr8BSuTjhQC6K7DsSJFa8SHDs foo');
//=> false

moneroRegex({exact: true}).test('47BnvD18P456f4KJUBKPS3Rqa97LrTaeqJ5NFYmjQM6nVoz6TBv4rJ24GZk883BNo22fAKbr8BSuTjhQC6K7DsSJFa8SHDs');
//=> true

'nodejsrocks 47BnvD18P456f4KJUBKPS3Rqa97LrTaeqJ5NFYmjQM6nVoz6TBv4rJ24GZk883BNo22fAKbr8BSuTjhQC6K7DsSJFa8SHDs unicorn 42oAxV3DVXXG3HhyCyi2xaPukKXbip9Sx1YuJtoCqjZRSze4tYCq7n3VUswDBFV59Zev8yfHSZro4TUwXumtRWnQ8xQipkC rainbow'.match(moneroRegex());
//=> ['47BnvD18P456f4KJUBKPS3Rqa97LrTaeqJ5NFYmjQM6nVoz6TBv4rJ24GZk883BNo22fAKbr8BSuTjhQC6K7DsSJFa8SHDs', '42oAxV3DVXXG3HhyCyi2xaPukKXbip9Sx1YuJtoCqjZRSze4tYCq7n3VUswDBFV59Zev8yfHSZro4TUwXumtRWnQ8xQipkC']
```


## API

### moneroRegex([options])

Returns a regex for matching Monero (XMR) addresses.

#### options.exact

Type: `boolean`<br>
Default: `false` *(Matches any XMR address in a string)*

Only match an exact string. Useful with `RegExp#test()` to check if a string is an XMR 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.
- [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.
- [neo-regex](https://github.com/k4m4/neo-regex) - Regular expression for matching NEO addresses.
- [dogecoin-regex](https://github.com/k4m4/dogecoin-regex) - Regular expression for matching Dogecoin (DOGE) addresses.


## License

MIT © [Nikolaos Kamarinakis](https://nikolaskama.me)

---
_Source: https://npm.io/package/monero-regex · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
