Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/k4m4/litecoin-regex
Ł Regular expression for matching Litecoin (LTC) addresses.
https://github.com/k4m4/litecoin-regex
cryptocurrency-regex litecoin ltc matcher regex regex-match
Last synced: about 1 month ago
JSON representation
Ł Regular expression for matching Litecoin (LTC) addresses.
- Host: GitHub
- URL: https://github.com/k4m4/litecoin-regex
- Owner: k4m4
- License: mit
- Created: 2018-02-23T11:38:25.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T16:13:45.000Z (almost 2 years ago)
- Last Synced: 2024-10-07T09:48:46.749Z (3 months ago)
- Topics: cryptocurrency-regex, litecoin, ltc, matcher, regex, regex-match
- Language: JavaScript
- Homepage:
- Size: 513 KB
- Stars: 7
- Watchers: 3
- Forks: 4
- Open Issues: 8
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# litecoin-regex [![Build Status](https://travis-ci.org/k4m4/litecoin-regex.svg?branch=master)](https://travis-ci.org/k4m4/litecoin-regex) [![XO code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg)](https://github.com/xojs/xo)
> Regular expression for matching Litecoin (LTC) addresses
## Install
```
~ ❯❯❯ npm install litecoin-regex
```## Usage
```js
const litecoinRegex = require('litecoin-regex');litecoinRegex().test('nodejsrocks LQL9pVH1LsMfKwt82Y2wGhNGkrjF8vwUst');
//=> truelitecoinRegex({exact: true}).test('nodejsrocks LQL9pVH1LsMfKwt82Y2wGhNGkrjF8vwUst foo');
//=> falselitecoinRegex({exact: true}).test('LQL9pVH1LsMfKwt82Y2wGhNGkrjF8vwUst');
//=> true'nodejsrocks LQL9pVH1LsMfKwt82Y2wGhNGkrjF8vwUst unicorn LPpHectVSbk7YHa5X89Cm3FoFBfzkJBJc9 rainbow'.match(litecoinRegex());
//=> ['LQL9pVH1LsMfKwt82Y2wGhNGkrjF8vwUst', 'LPpHectVSbk7YHa5X89Cm3FoFBfzkJBJc9']
```## API
### litecoinRegex([options])
Returns a regex for matching Litecoin (LTC) addresses.
#### options.exact
Type: `boolean`
Default: `false` *(Matches any LTC address in a string)*Only match an exact string. Useful with `RegExp#test()` to check if a string is an LTC address.
## Related
- [ethereum-regex](https://github.com/k4m4/ethereum-regex) - Regular expression for matching Ethereum (ETH) 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.
- [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)