Community Patterns

Community Library Entry

1

Regular Expression
Created·2024-05-15 07:51
Flavor·ECMAScript (JavaScript)

/
^[^\p{L}:]|.[^\p{L}0-9:\-_]|[^\p{L}0-9]$
/
u
Open regex in editor

Description

This version of the regex is less permissive than the w3c documentation.. It matches only the common attribute syntax.

Submitted by bye-csavier