I want to replace leading zeros in java with this expression found on this thread:
s.replaceFirst("^0+(?!$)", "")
But how can I make it work for values like -00.8899?
|
I want to replace leading zeros in java with this expression found on this thread:
But how can I make it work for values like |
||||
|
|
|
You can try with:
Output:
|
|||
|
|
|
Why are you dealing with a numeric value in a string variable? Java being a strongly-typed language, you would probably have an easier time converting that to a float or double, then doing all the business logic, then finally formatting the output. Something like:
http://download.oracle.com/javase/7/docs/api/java/text/DecimalFormat.html |
|||
|
|