How can I retrieve the word my from between the two rounded brackets in the following sentence using a regex in JavaScript?
my
"This is (my) simple text"
console.log( "This is (my) simple text".match(/(([^)]+))/)[1] );
1.4m articles
1.4m replys
5 comments
57.0k users