Tagged Questions

1
vote
6answers
114 views

Fastest way to check if a String can be parsed to Double in Java

I know there's a million ways of doing this but what is the fastest? This should include scientific notation. NOTE: I'm not interested in converting the value to Double, i'm only interesting in ...
1
vote
2answers
1k views

How to check if the input string is a valid VB string?

We know that VB string start and end with double quotes " " So we have to use "" if we want " in VB string. I wonder if there is a regular expression pattern which will match VB string?. Thanks.