
Security News
Official Go SDK for MCP in Development, Stable Release Expected in August
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
@stdlib/utils-regexp-from-string
Advanced tools
Create a regular expression from a regular expression string.
Create a regular expression from a regular expression string.
npm install @stdlib/utils-regexp-from-string
var reFromString = require( '@stdlib/utils-regexp-from-string' );
Parses a regular expression string
and returns a new regular expression.
var re = reFromString( '/beep/' );
// returns /beep/
Provided strings
must be properly escaped.
// Unescaped:
var re = reFromString( '/\w+/' );
// returns /w+/
// Escaped:
re = reFromString( '/\\w+/' );
// returns /\w+/
var reFromString = require( '@stdlib/utils-regexp-from-string' );
var re = reFromString( '/beep/' );
// returns /beep/
re = reFromString( '/[A-Z]*/' );
// returns /[A-Z]*/
re = reFromString( '/\\\\\\\//ig' );
// returns /\\\//gi
re = reFromString( '/[A-Z]{0,}/' );
// returns /[A-Z]{0,}/
re = reFromString( '/^boop$/' );
// returns /^boop$/
re = reFromString( '/(?:.*)/' );
// returns /(?:.*)/
re = reFromString( '/(?:beep|boop)/' );
// returns /(?:beep|boop)/
re = reFromString( '/\\w+/' );
// returns /\w+/
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
See LICENSE.
Copyright © 2016-2022. The Stdlib Authors.
0.0.8 (2022-02-16)
No changes reported for this release.
</section> <!-- /.release --> <section class="release" id="v0.0.7">FAQs
Create a regular expression from a regular expression string.
The npm package @stdlib/utils-regexp-from-string receives a total of 299,914 weekly downloads. As such, @stdlib/utils-regexp-from-string popularity was classified as popular.
We found that @stdlib/utils-regexp-from-string demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.