I'm using the jQuery inputmask plugin for masking a text field (https://github.com/RobinHerbots/Inputmask). I can't figure out the syntax for masking an unlimited number of alphanumeric characters. This seems like it should be simple I just can't seem to find the answer in in the documentation or another stackoverflow question. So far this works:
$('.inputmask_alphanumeric').inputmask({ mask: "[*]{100}", greedy: false });
{100} is a generous number for now, but I want this to be a generic class rule for any long text input in the future. I tried {*} and {+} but they didn't seem to work. Thanks.