Automatically set text box to Uppercase, Support alphabet and Number only?

<input type="text" oninput="this.value=this.value.replace(/[^A-Z0-9]/gi,'').toUpperCase()">