I have the following code which is changing the text I am inputting to UPPERCASE
if(WrtMsg.isDisplayable()== true); { //System.out.println(test.toString().toUpperCase()); RecView.setText(test.toString().toUpperCase()); } }
Now I want special characters like asterix (*) to be changes as text. Example ** to ATX ATX ... So the output will be displayed as ATXATX.
WrtMsgWrtMsg is the jtextareajtextarea of text input and RecViewRecView is the jtextareajtextarea where the output is showing.
ANyAny help please? thanksThanks.