regex:file_path:windows
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
regex:file_path:windows [2021/05/20 10:33] – peter | regex:file_path:windows [2021/05/26 15:26] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Regex - File Path - Windows ====== | ====== Regex - File Path - Windows ====== | ||
+ | < | ||
+ | ^(?: | ||
- | ===== Windows ===== | + | or |
- | <code bash> | + | ^(\w:\\$)|^(?:[\w]\:|\\)(\\(?!\.)(?!\s[a-zA-Z_0-9-])[a-zA-Z_\-\s0-9\.\$]+)+$ |
- | (\\\\([a-z|A-Z|0-9|-|_|\s]{2,15}){1}(\.[a-z|A-Z|0-9|-|_|\s]{1,64}){0, | + | |
</ | </ | ||
<WRAP info> | <WRAP info> | ||
- | **NOTE: | + | **NOTE: |
- | </ | + | |
- | ---- | + | * **< |
+ | * **< | ||
- | <code bash> | + | * **<nowiki>^(\w:\\$)</ |
- | ^((?:[a-z]:\\$|(?:[a-z]:|\\\\[a-z]+\\(?!\.)[^\r\n$<> | + | * **< |
- | </code> | + | </WRAP> |
- | ---- | + | <WRAP info> |
+ | **NOTE: | ||
- | < | + | < |
- | ^[a-zA-Z]:\\(((? | + | c:\ |
+ | c: | ||
+ | c: | ||
+ | c:\my folder\abc abc.docx | ||
+ | c:\my-folder\another_folder\abc.v2.docx | ||
+ | C:\pictures\holiday | ||
+ | C:\pictures\holiday\ | ||
+ | \\192.168.0.1\folder\file.pdf | ||
+ | \\192.168.0.1\my folder\folder.2\file.gif | ||
+ | \\10.30.28.52\CDSDataCenter\Servers\Continuous\CDS20$ | ||
+ | \\server\filename | ||
+ | \\server\filename with space | ||
+ | \\test\test$\TEST.xls | ||
+ | \\server\share\folder\myfile.txt | ||
+ | \\server\share\myfile.txt | ||
+ | \\123.123.123.123\share\folder\myfile.txt | ||
</ | </ | ||
+ | </ | ||
+ | |||
<WRAP info> | <WRAP info> | ||
- | **NOTE: | + | **NOTE: |
- | * **<nowiki>^[a-zA-Z]:\\</nowiki>** matches single drive letter, with colon and backslash | + | <code> |
+ | file | ||
+ | file.xls | ||
+ | c:\my folder\another_folder\.docx | ||
+ | c:\my folder\\another_folder\abc.docx | ||
+ | c:\my folder\another_folder\ab*c.v2.docx | ||
+ | c: | ||
+ | C:\ pictures\holiday | ||
+ | C:\ pictures\holiday\ | ||
+ | C:\pictures \ holiday | ||
+ | C:\pictures \ holiday\ | ||
+ | C: | ||
+ | \\192.168.0.1\folder\fi< | ||
+ | \\192.168.0.1\folder\\file.pdf | ||
+ | \\192.168.0.1\my folder\folder.2\.gif | ||
+ | \\server\filename\{token}\file | ||
+ | </code> | ||
- | * **< | + | To allow the top two entries |
- | * **< | + | * **< |
- | * **<nowiki>(?<![ .])\\</nowiki>** is a negative lookbehind to ensure the file/ | + | <code> |
+ | ^(\w: | ||
+ | </code> | ||
- | All of that is is repeated 0 to many times, with the last backslash optional. | + | To allow the very bottom entry here: **< |
- | For many use cases it may be best to restrict the path length to 256 characters. | + | < |
+ | ^(?: | ||
+ | </ | ||
- | * To do so, replace < | ||
</ | </ | ||
+ | ---- | ||
+ | |||
+ | ===== References ===== | ||
+ | |||
+ | https:// |
regex/file_path/windows.1621506783.txt.gz · Last modified: 2021/05/20 10:33 by peter