visual studio 2010 - Regex to find pattern and white space -
visual studio 2010 - Regex to find pattern and white space -
i want find
//this comment //this new comment
strings using regex.
my problem is, have next entries in file:
/// valid comment
so here, don't want find , replace valid comment having chars right after //
i trying visual studio 2010 find , replace. want regex replace case. means, should replace //this comment with
// comment
. here difference white space after //
.
find://{[^ ]}
replace with:// \1
regex visual-studio-2010
Comments
Post a Comment