time-to-botec/js/node_modules/@stdlib/regexp/extended-length-path/docs/repl.txt
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

43 lines
859 B
Plaintext

{{alias}}()
Returns a regular expression to test if a string is an extended-length path.
Extended-length paths are Windows paths which begin with `\\?\`.
Returns
-------
re: RegExp
Regular expression.
Examples
--------
> var RE = {{alias}}();
> var path = '\\\\?\\C:\\foo\\bar';
> var bool = RE.test( path )
true
> path = '\\\\?\\UNC\\server\\share';
> bool = RE.test( path )
true
> path = 'C:\\foo\\bar';
> bool = RE.test( path )
false
> path = '/c/foo/bar';
> bool = RE.test( path )
false
> path = '/foo/bar';
> bool = RE.test( path )
false
{{alias}}.REGEXP
Regular expression to test if a string is an extended-length path.
Examples
--------
> var bool = {{alias}}.REGEXP.test( 'C:\\foo\\bar' )
false
See Also
--------