Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
regexp-i18n
Advanced tools
Library provides range of the all letters in Unicode.
This ranges could be used in the RegExp as a part of the range. As ranges include astral symbols from astral pages you need to pass u flag to the regexp.
Library tested on latest versons of Safari, Chrome, Firefox and Edge browsers.
The library designed to provide a way to match any i18n character in any alphabet.
The library exports following building blocks:
Constants & Ranges represent range of the symbols. You could use any of the constants provided as a part of the range regexp expression. Ranges could be used as an argument for the trim function.
import { Constants, Ranges trim } from 'regexp-i18n';
const matchLetterPattern: '[' + Constants.LETTERS + ']';
const rx = new RegExp(matchLetterPattern, 'ug');
let data = '他走過城市的狗他的兄弟生氣了123';
console.log(data.replace(rx, '')); // 123
console.log(trim(data, Ranges.LETTERS)); // 123
LETTERS
- all 18n lettersLETTERS_AND_DIACRITICS
- all i18n letters and diacriticsLETTERS_DIGITS_AND_DIACRITICS
- all i18n letters, digits and diacriticsDIACRITICS
- Special class of characters. Modifies previous character. Can't be stripped out without changing the text meaning.DIGITS
- all i18n digitsThe patterns are regular expressions ranges well tested and reusable.
MATCH_LETTER
- Matches all 18n characters with diacritics. This is a strict pattern. All outstanding diacritics won't be matched.STRIP_SPECIAL
- Matches special characters in the beginning and the end of the string. Deprecated. Use trim(text, Ranges.LETTERS_DIGITS_AND_DIACRITICS.invert()) instead.import { Patterns } from 'regexp-i18n';
const rx = new RegExp(Patterns.STRIP_SPECIAL, 'ug');
let data = '$ಕನ್ನಡೈಈ123#';
console.log(data.replace(rx, '')); // ಕನ್ನಡೈಈ123
replaceNotMatching(pattern: string, replaceValue: string, text: string): string;
Attempt to make a function replacing everything not matching to the pattern.
The motivation for it that it is impossible to make an inverse MATCH_LETTER
pattern.
Not very reliable in the complex cases yet.
trim(text: string, range: Range): string;
Removes all leading and trailing characters in the given range from the text.
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
FAQs
RegularExpression internationalization library
The npm package regexp-i18n receives a total of 14 weekly downloads. As such, regexp-i18n popularity was classified as not popular.
We found that regexp-i18n demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers 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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.