Can I choose to use regex in jQuery? Sort of
$('input[name=^[a-z]+_[1-9].*]')
Nothing is built in there, but you can use the filter () method to achieve the same goal:
$('input').filter(function () { return /^[a-z]+_[1-9].*/.test(this.name); })
You can find the regex selector here (James Padolsey), so named in your case:
$('input:regex(name,^[a-z]+_[1-9].*)');
Source: https://habr.com/ru/post/1761551/More articles:what type of security is needed for WCF - c #Sequential implementation of tr? - scriptingCustom Adapter for UITableViewCell - objective-cIn Ruby on Rails, how do I create an entry with ID 3 when it was destroyed before? - mysqlImplement a new history record without changing the URL. Like google maps - javascriptUpdating viewmodel data in controller does not reflect input fields - asp.nethttps://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1761553/rails-for-java-desktop-mvc&usg=ALkJrhgH8umy7IVlW__iuBUaw45lB7sO-wOS X transparent panels in Qt? - qtПрофилировщик памяти для silverlight - memoryhow to manage 3 many models in Rails - ruby-on-railsAll Articles