As a robot, my designation is 456/m(4) but the name holds no significance."
To extract all words from this string, I utilized the following regular expression:
/\b[\w\S]+\b/g
Although it successfully retrieved most of the words, there was an issue with "456/(4" where the starting parenthesis was not considered as part of the word. Is there a way to specify that this is not a valid word boundary due to the absence of a legitimate starting parenthesis?