我是applet概念的新手。我想實現一個應用程序。該小程序有2個文本區域和一個按鈕。第一個文本區域是輸入(意味着它包含一些文本)。第二個文本區域是空的。如果單擊該按鈕,則會解析第一個文本區域中的文本(這裏解析意味着第一個文本區域文本包含一些文本,對嗎?文本中包含一些數字,這些數字將被刪除,其餘文本將被粘貼到第二個文本區域中) EX: 文本區域1:1.堆棧溢出2 Google 3 yahoo 按鈕單擊後 文本區域2:堆棧溢出 Google 雅虎如何檢查字符串是否包含Java中的數字格式?
這裏如何檢查字符串中的數字?以及如何獲取字符串的數量。
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);
}
}
}
怎樣用字符串標記它? – Sibbo