In general, you cannot.
Here is a tricky answer that works in this case:
/** * perl -pe 's/(?<=.{6}).* //gx' : Limit to PID */
This (or it must have been, I really did not check the perl command) is a regular expression that matches the original, because the x modifier allows you to use a space for clarity in the expression, which allows * for the branch from / .
You can use more spaces, I included only one space that breaks the end of the comment block token.
Some compilers support the ability to include a custom function for resolving nested comments. This is usually a bad idea, but in this particular case you can also do
/** * /* perl -pe 's/(?<=.{6}).*//g' : Limit to PID */
with this option is enabled only for this source file. Of course, as the funky coloring in the above fragment shows, the rest of your tools may not know what you are doing, and will make the wrong guesses.
source share