JSFiddle - React, Tailwind, and code Playground
HTML
<input id="foo" /><button id="bar">Check</button>
JavaScript
$('#bar').click(function() {
alert(/^[a-z0-9\-&_]+$/i.test($('#foo').val()));
});
<input id="foo" /><button id="bar">Check</button>
$('#bar').click(function() {
alert(/^[a-z0-9\-&_]+$/i.test($('#foo').val()));
});