Longueur maximale d'expression

// Validate string length
/^.{1,35}$/.test(variable) // min - 1, max - 35
florinrelea