i want to find certain part of the comments. following are some examples
/*
* @todo name another-name taskID
*/
/* @todo name another-name taskID */
currently im using following regular expression
'/\*[[:space:]]*(?=@todo(.*))/i'
this returns following:
* @todo name another-name taskID
or
* @todo name another-name taskID */
how can i just get just @todo and names, but not any asterisks?
desired output
@todo name another-name taskID
@todo name another-name taskID