It's not a secret anymore!
The moose likes Beginning Java and the fly likes Number Format Pattern Syntax Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Number Format Pattern Syntax " Watch "Number Format Pattern Syntax " New topic
Author

Number Format Pattern Syntax

Emma Peel
Greenhorn

Joined: Feb 18, 2003
Posts: 10
Can anyone explain how to read:

'\\u0000'..'\\uFFFD' - specialCharacters
It is part of Number Format Pattern Syntax:
pattern := subpattern{;subpattern}
subpattern := {prefix}integer{.fraction}{suffix}
prefix := '\\u0000'..'\\uFFFD' - specialCharacters
suffix := '\\u0000'..'\\uFFFD' - specialCharacters
integer := '#'* '0'* '0'
fraction := '0'* '#'*
found at http://java.sun.com/docs/books/tutorial/java/data/numberpattern.html
Thanks! Emma Peel
Greg Charles
Bartender

Joined: Oct 01, 2001
Posts: 2535
    
  10

Greetings Mrs. Peel,
That link you provide has examples of building patterns for number formatters. (java.text.NumberFormat) The extra unicode characters allow you to parse and format strings with more than just numbers, for example a currency character.
One example they give is:
"\\u00A5###,###.###"
That pattern lets you parse or format string with the Yen sign in front of a series of numbers.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Number Format Pattern Syntax
 
Similar Threads
Eclipse Europa and Eclipse web tools...
Calculation displays scientific format instead of a whole number
About String.format()
what is size of char in java5?
regarding regex syntax