Socket
Book a DemoInstallSign in
Socket

xre

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

xre

Template string tag for XRegExp.

latest
Source
npmnpm
Version
1.0.5
Version published
Maintainers
1
Created
Source

xre

Travis CI NPM version NPM dependencies NPM license

XRegExp regular expressions without the pain in the ass.

$ yarn add xre

Examples

Multi-line RegExp with comments

import xre from 'xre';

const date = xre`/
    (?<year>  \d{4}) - # Year
    (?<month> \d{2}) - # Month
    (?<day>   \d{2})   # Day
/x`;

const { year, month, day } = date.exec('2017-06-11');

console.log(`Year: ${year}, month: ${month}, day: ${day}`);
// → Year: 2017, month: 06, day: 11

Unicode support

import xre, { configure } from 'xre';
import XRegExp from 'xregexp';

// By default xre uses minimal version of XRegExp,
// so to use the power add-ons we have to configure it
// with full version of XRegExp:
configure({ XRegExp });

const fullName = xre`/(?<firstName>\p{Letter}+)\s(?<lastName>\p{Letter}+)/i`;

console.log(fullName.exec('Shit Ass').firstName);
// → Shit

console.log(fullName.exec('Говно Жопа').firstName);
// → Говно

console.log(fullName.exec('くそ けつ').firstName);
// → くそ

API

All built-in RegExp's methods and properties is fully supported, so you can use xre regular expressions as an argument for String's methods such as replace or match.

Methods with non-standard behavior

exec

Arguments:

  • string: string — string to search.
  • position: number = lastIndex — zero-based index at which to start the search.
  • sticky: boolean | string = false — whether the match must start at the specified position only. The string 'sticky' is accepted as an alternative to true.

Returns:

  • Match array with named backreference properties, or null.

See also:

test

Arguments:

See also:

Non-standard methods

Non-standard methods are derived from XRegExp's ones, but does not take regexp argument.

Additional API

configure

Arguments:

  • options:
    • XRegExp — XRegExp constructor.

Contributing

$ yarn run lint
$ yarn run test

Keywords

regexp

FAQs

Package last updated on 11 Jun 2017

Did you know?

Socket

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.

Install

Related posts