Regular Expressions 101

Community Patterns

Community Library Entry

0

Regular Expression
Created·2023-04-17 09:20
Flavor·PCRE2 (PHP)

/
^\w{1,14}$
/
gm
Open regex in editor

Description

Regex to check if a given folder name is valid linux.

Limited to 14 chars so it includes older linux version. If you know you will be using a newer version you can use the 255 limit for chars.

Submitted by anonymous