
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
fi-di-regex
Advanced tools
Diacritic RegExp builder.
Build a diacritic insensitive regular expression ideal to match names when making searches.
This module exists thanks to this project.
npm i fi-di-regex
const diregex = require('fi-di-regex');
const regex = diregex.build('juan', { flags: 'gi' }); // /j[uùúûü][aàáâãäå][nñńņǹ]/gi
regex.test('Juán'); // true
| Options | Type | Description |
|---|---|---|
string | Boolean | Whether to return a String instead of a RegExp. |
upper | Boolean | Whether to return an uppercase String or RegExp. |
lower | Boolean | Whether to return a lowercase String or RegExp. |
flags | String | Any valid RegExp flags. |
mappings | Object | Mappings 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. |
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.
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.
{
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ž'
}
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.
FAQs
String to a regex that is diacritic insensitive
The npm package fi-di-regex receives a total of 7 weekly downloads. As such, fi-di-regex popularity was classified as not popular.
We found that fi-di-regex demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.