Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to get the 2-digit fraction part only using <f:convertNumber>. E.g. 103.99 must result in .99.

<h:outputText value="#{myBean.totalFare}">
    <f:convertNumber pattern="#,##0.00" />
</h:outputText>

This does not work. I also tried to use the patterns ,##.00 and ,##, but failed.

How can I achieve this?

share|improve this question

1 Answer

up vote 2 down vote accepted

That's not possible with <f:convertNumber>. It's not intented to manipulate numbers (read: performing any math on it), but it's intented to format/convert it.

You should first trim off the integer part by a modulus of 1.

<h:outputText value="#{myBean.totalFare % 1}">

Then you can use the pattern of .## in order to show two fractions only:

<h:outputText value="#{myBean.totalFare % 1}">
    <f:convertNumber pattern=".##" />
</h:outputText>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.