regex min length max length

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

Also in JavaScript: