Regular expression for visual studio needed
-
Hi, The Find window of Visual studio provides now possibility to use regular expressions. Can anybody help me with an regular expression for the string if (XX=YY I would like check all my code for the assignments inside if The expression shouldn't match to if (XX==, if (XX>= , if(XX<= and so on
-
Hi, The Find window of Visual studio provides now possibility to use regular expressions. Can anybody help me with an regular expression for the string if (XX=YY I would like check all my code for the assignments inside if The expression shouldn't match to if (XX==, if (XX>= , if(XX<= and so on
-
Hi, The Find window of Visual studio provides now possibility to use regular expressions. Can anybody help me with an regular expression for the string if (XX=YY I would like check all my code for the assignments inside if The expression shouldn't match to if (XX==, if (XX>= , if(XX<= and so on
-
Hi, The Find window of Visual studio provides now possibility to use regular expressions. Can anybody help me with an regular expression for the string if (XX=YY I would like check all my code for the assignments inside if The expression shouldn't match to if (XX==, if (XX>= , if(XX<= and so on
I have no idea what the expression "if(XX==YY" is suppose to mean. It appears you are looking for a pclint type program to verify that your code is correct. Modern complires are great: write some code, compile code, look at warnings and error. Then correct program errors or warnings (if you know what caused them), that is all. INTP
-
Thank you very much, Gary
-
I have no idea what the expression "if(XX==YY" is suppose to mean. It appears you are looking for a pclint type program to verify that your code is correct. Modern complires are great: write some code, compile code, look at warnings and error. Then correct program errors or warnings (if you know what caused them), that is all. INTP
Hi, Thanks for this advices. But I needed a regular expression. The reason is, that I have a bunch of files which are from other providers. And they produce many warnings(which are mostly ok).