mapcode-regex
v3.0.0
Published
Regular expression for matching mapcodes
Downloads
694
Maintainers
Readme
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