How can I truncate string in JSF2 ?
Say I have a really long name and I only want to display 5 characters how can I do that? I know I use backing bean what any better options.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
substring(0,4)? A Before/After example would be helpful. – Andreas_D Sep 13 '11 at 10:04