I have a string like
> 12.4N-m/kg.
From the above string I need to get a value 12.4.
When I use replace all function str.replaceAll("[^.0-9]", "").
This doesn’t work when then string has two dots.
The location of float value may differ.
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.
First discard all non flot characters and then covert to Float like this: