All Questions
2 questions
1
vote
2
answers
1k
views
How do I set a max length of a string in a conteneditable table in HTML?
I have currently been making a word search maker, but I have occurred a problem. The problem is that I'me using a table with contenteditable, but how do I set a max string length. I already tried
...
2
votes
1
answer
2k
views
Regular Expression Maximum Number Of Characters Javascript [duplicate]
So i have this regex:
var regex = /^[\S]+(\-[\S]+)$/
i want to add one more rule, the rule is that maximum number of characters is 6 or something, how do i do it? my full code looks like this
var ...