I have an string like this:
Dim value as string = "hy the number is (30.01)"
How i can get this number 30.01 into another variable?
I am thinking to use split, How i can use to get this value thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If your format is going to be exactly the same, you can try using Split like you mentioned. This can be very fragile if anything changes.
See if this works for you.