3.0.0 • Published 3 years ago

mapcode-regex v3.0.0

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

mapcode-regex

Regular expression for matching mapcodes

Install

$ npm install mapcode-regex

Usage

import mapcodeRegex from 'mapcode-regex';

mapcodeRegex().test('4J.Q2');
//=> true

mapcodeRegex().test('Hawaii ZSR.3J');
//=> true

mapcodeRegex().exec('This is a mapcode FRA 4J.Q2')[0];
//=> 'FRA 4J.Q2'

'Multiple FRA 4J.Q2 Hawaii ZSR.3J mapcodes'.match(mapcodeRegex());
//=> ['FRA 4J.Q2', 'Hawaii ZSR.3J']

Tip

You can use clone-regexp to change the flags. In this case, maybe remove the global flag.

Related

  • mapcode - Find mapcodes in a string