Regular Expressions 101

Community Patterns

Community Library Entry

1

Regular Expression
Created·2021-08-22 04:09
Flavor·JavaScript

/
^([a-z]:)(((\\|\/)[a-z0-9^&'@{}\[\],$=!\-#\(\)%\.\+~_]+)*(\\|\/))([^\\\/:\*\"<>\|]+\.[a-z0-9]+)
/
ig
Open regex in editor

Description

Matches absolute file paths, such as

C:\Users\username\Documents\filename.txt The path must contain a file and extension at the end

Submitted by anonymous