I want to check whether within particular string exist two brackets (). Starting and ending bracket.
Dim example1 = "1x : (HxBxT) 80x120x44 cm"
Dim example2 = "1x : ( 80x120x44 cm"
In this case example1 contains both brackets: ( and closing one ) therefore it passed the case.
In this case i would like to take entire value in this case (HxBxT) and then replace it by something (i will do that). After that i would like insert replace again so for instance at the end i would get this:
Dim example1 = "1x : (whatever i put here) 80x120x44 cm"
\(.*\)within Regex class.