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 ... So the output will be displayed as ATX.
WrtMsg is the jtextarea of text input and RecView is the jtextarea where the output is showing.
Any help please? Thanks.