AAAAAAAAAAAA.
Alternatively, create a derived property on your form bean and reference that, eg
class MyForm extends ActionForm {
String getPropertyA() {
return this.propertyA;
}
String getPropertyATwelve() {
return this.propertyA.substring(0, 12);
}
...
Isaac Mosquera wrote:
I'm trying to only print the first TWELVE characters in a string with the tag <bean:write>, but i don't want to format the value inside the string, just the output, how do i format the string to only show 12 characters using the tag?
-isaac
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

