I have strings formatted similar to the one below in a Java program. I need to get the number out.
Host is up (0.0020s latency).
I need the number between the '(' and the 's' characters. E.g., I would need the 0.0020 in this example.
|
|
|
It depends on how "similar" you mean. You could potentially use a regular expression:
Quite how specific you want to make your pattern is up to you, of course. This only checks for digits, a dot, then digits after an opening bracket and before an |
|||
|
|
|
If you are sure it will always be the first number you could use the regular expresion Try this code:
See it working online: ideone You could also include some of the surrounding characters in the regular expression to reduce the risk of matching the wrong number. To do exactly as you requested in the question (i.e. matching between
See it working online: ideone |
||||
|
|
|
Sounds like a case for regular expressions. You'll want to match for the decimal figure and then parse that match:
|
|||||||||||
|
|
Here's a way without regex
|
|||
|
|
|
Of course using regular expressions in this case is best solution but in many simple cases you can use also something like :
This is not recomended because text in myString can changes. |
|||
|
|
|
This is a great site for building regular expressions from simple to very complex. You choose the language and boom. |
|||
|
|