RegEx slots
Capture digit and/or letter combination
const reg = "([A-Za-z]{1}\\s?){6}"
$(SLOTNAME\* ${reg}) => p.SLOTNAME.value
Capture any userâs input
$(SLOTNAME\* .+) => p.SLOTNAME.value
Comments
Capture digit and/or letter combination
const reg = "([A-Za-z]{1}\\s?){6}"
$(SLOTNAME\* ${reg}) => p.SLOTNAME.value
Capture any userâs input
$(SLOTNAME\* .+) => p.SLOTNAME.value