@stdlib/regexp-basename-windows
v0.2.3
Published
Return a regular expression to capture the last part of a Windows path.
Downloads
229
Readme
reBasenameWindows
Regular expression to capture the last part of a Windows path.
Installation
npm install @stdlib/regexp-basename-windows
Usage
var reBasenameWindows = require( '@stdlib/regexp-basename-windows' );
reBasenameWindows()
Returns a regular expression to capture the last part of a Windows path.
var RE = reBasenameWindows();
var base = RE.exec( 'foo\\bar\\index.js' )[ 1 ];
// returns 'index.js'
reBasenameWindows.REGEXP
Regular expression to capture the last part of a Windows path.
var match = reBasenameWindows.REGEXP.exec( 'foo\\file.pdf' )[ 1 ];
// returns 'file.pdf'
Examples
var reBasenameWindows = require( '@stdlib/regexp-basename-windows' );
var RE_BASENAME_WINDOWS = reBasenameWindows();
var base = RE_BASENAME_WINDOWS.exec( 'index.js' )[ 1 ];
// returns 'index.js'
base = RE_BASENAME_WINDOWS.exec( 'C:\\foo\\bar\\home.html' )[ 1 ];
// returns 'home.html'
base = RE_BASENAME_WINDOWS.exec( 'foo\\file.pdf' )[ 1 ];
// returns 'file.pdf'
base = RE_BASENAME_WINDOWS.exec( 'beep\\boop.' )[ 1 ];
// returns 'boop.'
base = RE_BASENAME_WINDOWS.exec( '' )[ 1 ];
// returns ''
base = RE_BASENAME_WINDOWS.exec( '\\foo\\bar\\file' )[ 1 ];
// returns 'file'
base = RE_BASENAME_WINDOWS.exec( 'C:\\foo\\bar\\.gitignore' )[ 1 ];
// returns '.gitignore'
See Also
@stdlib/regexp-basename
: return a regular expression to capture the last part of a path.@stdlib/regexp-basename-posix
: return a regular expression to capture the last part of a POSIX path.
Notice
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.
Community
License
See LICENSE.
Copyright
Copyright © 2016-2024. The Stdlib Authors.