I have a string like
String example = "Tag: something Id: somethingElse Score: 0.8";
How can i check if Score is higher/equal/lower than 0.
|
|
|
By using
Now, you can do an PS: If you want it returned as float, change the last line like so:
|
|||||||||||||||
|
|
just as an alternative to @The-Elite-Gentleman:
In case the score is always last, of course :) |
|||
|
|
Then check the scoreDouble. |
||||
|
|
|
If the format is stable, you could look for "Score: ", get the remainder of the string and parse as a float or double number, according to the precision you need.
After that it would be a simple if on |
||||
|
|