changing a letter to word

how change a word ( a "T" ) TO ("TOTAL")thanks .......i'm work in as/400 servlets
[103 byte] By [sam121a] at [2007-9-19]
# 1
I don't get it.Would you like some code to automatically change the letter "T" to the word "TOTAL" ?How would the "code" know it shouldn't change the "T" to, for example, the word "TOMATOE" ?Maybe I don't understand the question right.../Rickard
rickardea at 2007-7-8 > top of java,Enterprise & Remote Computing,Web Tier APIs...
# 2
sorry , i get a "F" a field from bd ok?but i need seen " FORMAT " ( the word complete )in my web thanks.
sam121a at 2007-7-8 > top of java,Enterprise & Remote Computing,Web Tier APIs...
# 3
you can use the concat() method from the String classString myword = "F";myword.concat("ORMAT");
ps33a at 2007-7-8 > top of java,Enterprise & Remote Computing,Web Tier APIs...
# 4
You say you get a "F" from a "bd". Do you mean a database (db) ?/Rickard
rickardea at 2007-7-8 > top of java,Enterprise & Remote Computing,Web Tier APIs...
# 5

hi,

You are talking about logical conventions.

Write a business logic for your logical conventions which will convert your db value to a human readable format and send it to the web page.

It may be a specific requirement in your domain implement the logic to fulfill the requirement.

or else come back with the details about requirement.

-Sanath Kumar

sanathkpa at 2007-7-8 > top of java,Enterprise & Remote Computing,Web Tier APIs...