I am new to applet concept. I want to implement the one application. The applet have 2 text areas and one button. The first text area is the input(means it contains some text).Second Text area is empty.If you click on the button then the text in the first text area is parsed(here parsed means first text area text contains some text right? that text contains some number here that numbers will be removed and remaining text will be pasted in the second text area) EX: Text area1: 1. stack Overflow 2 Google 3 yahoo after button click Text area2: stack Overflow Google Yahoo
Here how to check the number in the string? and how to get the string up to the number.
public class parsetextdata extends Applet implements ActionListener{
TextArea ta1,ta2;
Button parse;
public void init() {
ta1 = new TextArea();
ta1.setText("1. Naresh Repalle 2. Lakshman Yalavarthy 3. Rajendra Batchu 4. Bhart Chand Yalavrthy ");
add(ta1);
parse = new Button();
parse.setLabel("parse");
add(parse);
ta2 = new TextArea();
add(ta2);
parse.addActionListener(this);
}
@Override
public void actionPerformed(ActionEvent button) {
if(button.getSource() == parse)
{
String text = ta1.getText();
ta2.setText(text);
}
}
}
