1.0.1 • Published 7 years ago

fi-di-regex v1.0.1

Weekly downloads
78
License
MIT
Repository
github
Last release
7 years ago

Fi Di Regex

Diacritic RegExp builder.

Build a diacritic insensitive regular expression ideal to match names when making searches.

This module exists thanks to this project.

Installation

npm i fi-di-regex

Usage

const diregex = require('fi-di-regex');

const regex = diregex.build('juan', { flags: 'gi' }); // /j[uùúûü][aàáâãäå][nñńņǹ]/gi

regex.test('Juán'); // true

Options

OptionsTypeDescription
stringBooleanWhether to return a String instead of a RegExp.
upperBooleanWhether to return an uppercase String or RegExp.
lowerBooleanWhether to return a lowercase String or RegExp.
flagsStringAny valid RegExp flags.
mappingsObjectMappings to merge with the default ones. If a property with the same name of an existing mapping is passed, it will overwrite the default completely.

Use Case

Assume we are looking for an employee named Juán but the user isn't aware that computers are not diacritic insensitive.

There will be no results and this is will really annoy our user.

With this library you can create a regex that will match juan with Juán as expected by the user:

diregex.build('juan', { flags: 'gi' }); // /j[uùúûü][aàáâãäå][nñńņǹ]/gi

Our user is happy again.

A Note On Mappings

We've taken the time to map many of the diacritic equivalents on multiple letters but there may be some missing or unnecessary. If you happen to found either a missing or unnecessary mapping, then please open an issue or, better yet, open a pull request.

Every little bit counts.

Current Mappings

{
  A: 'AÀÁÂÃÄÅ',
  a: 'aàáâãäå',
  C: 'CÇĆĈČ',
  c: 'cçćĉč',
  E: 'EÈÉÊËĘĚ',
  e: 'eèéêëęě',
  I: 'IÌÍÎÏ',
  i: 'iìíîï',
  N: 'NÑŃŅǸ',
  n: 'nñńņǹ',
  O: 'OÒÓÔÕÖØ',
  o: 'oòóôõöø',
  S: 'SŚŜŞŠ',
  s: 'sśŝşš',
  U: 'UÙÚÛÜ',
  u: 'uùúûü',
  Y: 'YÝŸŶỲ',
  y: 'yýÿŷỳ',
  Z: 'ZŽ',
  z: 'zž'
}

Important

There is a bug in V8 which is not matching Ÿ with ÿ when the i flag is set.

Please see https://bugs.chromium.org/p/v8/issues/detail?id=6940 for details.