How can I use javascript to find a word in a string which is wrapped in parenthesis, and then style this particular word. I would like users in a CMS to wrap any word they would like in parenthesis, which would then automatically make this word bold. I know I can get them to wrap the words in tags but I would like to make it easier for them.
For example, if I had the string
Hello (World)
How do I target the characters in between the parenthesis and style these characters, so it looks like this.
Hello <b>World</b>