karljj1
2009-07-21 13:23:35 UTC
I have some comment blocks formatted like so:
//************************************
// Method: ....
// FullName: ....
//!Description: Do something
// Some more description
// Some more
// Access: virtual public
// Returns: void
// Qualifier:
// Parameter:
//************************************
I need to change the // that is part of the descriptor into a //!
E.G
//************************************
// Method: ....
// FullName: ....
//!Description: Do something
//! Some more description
//! Some more
// Access: virtual public
// Returns: void
// Qualifier:
// Parameter:
//************************************
The comment block descriptions are various lines long and i have thousands of comments to change so doing it manually is not an option.
Can someone show me a regular expression or wildcard that i could use in visual studio to automate this, i have been reading up on regex but cant really understand them. Thanks.