2
I’ve been all over the Internet, even W3school, and all I see is them reporting the "ready" code. With keys, interrogations, bars, cipher and several other parameters.
But I couldn’t find anything explaining how to use these parameters, what they’re for?
W3school is definitely not one of the places I would recommend to study. It is a site that became famous for the lack of quality information (and if it was a good thing, you did not need to try to misappropriate the name W3, which has no relation to them). That said, what you have to search for is Javascript’s Regex, (regular expressions), which is the default used in validation by
pattern
. See the MDN link on https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#attr-Pattern– Bacco
More specifically, the Regex syntax used is here https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp
– Bacco