Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to use the f:convertNumber tag. I want to use multiple patterns. I see you can do that with the date tag and the color tag. Is there any way to do it with the convertNumber tag without creating a custom tag.

My problem is I want to be able to accept $ signs or no $ sign for my input.

Thanks in advance.

share|improve this question

1 Answer

For the dollar sign (if the number is a currencty), you can try:

<f:convertNumber currencySymbol="$" type="currency" />

And for any pattern you can:

<f:convertNumber pattern=".." />
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.