I’m trying to pull code comment blocks out of JavaScript files. I’m making a light code documentator.
An example would be:
/** @Method: setSize
* @Description: setSize DESCRIPTION
* @param: setSize PARAMETER
*/
I need to pull out the comments setup like this, ideally into an array.
I had gotten as far as this, but realize it may not handle new lines tabs, etc.:
\/\*\*(.*?)\*\/
(Okay, this seems like it would be simple, but I’m going in circles trying to get it to work.)
Depending on what you want to continue doing with the extracted docblocks, multiple approaches come to mind. If you simply need the docblocks without further references, String.match() may suffice. Otherwise you might need the index of the block.
As others have already pointed out, javascript’s RegEx machine is everything but powerful. if you’re used to PCRE, this feels like working with your hands tied behind your back.
[\s\S](space-character, non-space-character) is equivalent to dotAll – also capturing linebreaks.This should get you started: