Regular Expression To Match ZIP Archive File Path
A regular expression to match a ZIP archive file path.
/((\/|\\|\/\/|https?:\\\\|https?:\/\/)[a-z0-9\[email protected]\-^!#$%&+={}.\/\\\[\]]+)+\.zip$/i
A regular expression to match a ZIP archive file path.
/((\/|\\|\/\/|https?:\\\\|https?:\/\/)[a-z0-9\[email protected]\-^!#$%&+={}.\/\\\[\]]+)+\.zip$/i
A regular expression to match and validate RAR Archive Files.
/^\.([rR]([aA][rR]|\d{2})|(\d{3})?)$/
A regular expression to match the path of a file in Windows.
/^[a-zA-Z]:\\(?:\w+\\)*\w+\.\w+$/
A regular expression to match the path of a hidden file in Linux.
/^\/(?:[^/]+\/)*\.[^/]*/
A regular expression to match the path of a file in Linux.
/^\/(?:[^/]+\/)*[^/]+$/