Community Patterns

Community Library Entry

1

Regular Expression
Created·2023-03-24 08:53
Flavor·.NET 7.0 (C#)

@"
^[a-zA-Z\s\d\/\+\(\)\#\&]*$
"
gm
Open regex in editor

Description

custom validation for card name with custom validation. only allow these characters

  • Alphanumeric (A-Z a-z0-9)
  • Special Characters (#&+()/)
Submitted by anonymous