I have a string
it contains can contains either of (1)
strQuery = "TempTable.Group_No IN ()";
(2)
strQuery = "TempTable.Group_No IN (1,2,3,4,....)";
My task is if it contains "TempTable.Group_No IN ()", (i.e) IN CLAUSE without data
i have to replace the string (IN() with IN (NULL)) with "TempTable.Group_No IN (NULL)"
How to perform it in C#?