/**
* 要求使用者輸入若干員工資訊,格式為:
* name,age,gender,salary;name,age,gender,salary;....
* 例如:
* 張三,25,男,5000;李四,26,女,6000;...
* 然後將每個員工資訊解析成person物件。並存入到乙個陣列中。
* 然後迴圈陣列,輸出每乙個員工資訊(輸出使用tostring返回的字串)
* @author xiloer
*
public class test08 {
public static void main(string args) {
scanner scan = new scanner(system.in);
system.out.println("請輸入員工資訊:");
string str = scan.nextline();
string p = str.split(";");
person emp = new person[p.length];
for(int i=0;i
正規表示式練習題
1.顯示 proc meminfo檔案中以大小s開頭的行 要求兩種方法 cat proc meminfo grep ss cat proc meminfo grep s s 2.顯示 etc passwd檔案中不以 bin bash結尾的行 cat etc passwd grep v bin bas...
Python 正規表示式練習題
1.建立regex物件的函式是什麼?答 re.compile 函式返回regex物件。2.在建立regex物件時,為什麼常用原始字串?答 使用原始字串是為了讓反斜槓不必轉義。3.search 方法返回什麼?答 search 方法返回match物件。4.通過match物件,如何得到匹配該模式的實際字串...
正規表示式練習題自帶注釋
參 root desktop1 grep n the regular express.txt root desktop1 grep vn the regular express.txt root desktop1 grep in the regular express.txt root deskto...