string - How can I use javascript to get a substring of whatever is between two parenthesis? -


i trying return "aa" using javascript.

this doesn't work.

var mystr = "item code alpha tengo (aa)";  var newstr = mystr.substring("(",mystr.lastindexof(")")); 

you can do:

var mystr = 'item code alpha tengo (aa)'; mystr.replace(/^[^(]*\(|\)[^)]*$/g, ''); // aa 

or simpler:

mystr.replace(/.*\(|\).*/g,'') 

Comments

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

css - Make div keyboard-scrollable in jQuery Mobile? -

ruby on rails - Seeing duplicate requests handled with Unicorn -