1. 程式人生 > >字串提取和查詢方法

字串提取和查詢方法

public int indexOf(String value) //搜尋第一個出現的字串 value,如果沒找到返回-1

public int indexOf(int ch) //搜尋第一個出現的字串ch,如果沒找到返回-1
public int lastIndexOf(int ch)//搜尋第一個出現的字元ch,如果沒找到返回-1
public int lastIndexOf(String value) //搜尋最後一個出現的字元ch(或字串 value)如果沒有找到返回-1
public String substring(int index) //提取從索引位置開始的字串部分(直到末尾)
public String substring(int beginindex,int endindex) //提取beginindex和endindex之間的字串部分 包含beginindex,但不包含endindex
public String trim() //返回一個前後不含空格的呼叫字串的副本

實列

學生使用作業提交系統提交Java作業時,輸入Java原檔名,並輸入自己的電子郵箱,提交前系統檢查:是否符合Java原始檔名;電子郵箱是否為合法地電子郵箱。此程式碼實現提交前驗證功能。

/**
 * 
 */
package zut.edu.cs.network.practice;

import java.util.Scanner;

/**
 * @author Administrator
 *
 */
public class Verify {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		boolean fileCorrect=false;
		boolean emailCorrect=false;
		System.out.println("welcome to the system of handing in homework");
		@SuppressWarnings("resource")
		Scanner input=new Scanner(System.in);
		System.out.println("please input \".java's \"file name");
		String  fileName=input.next();
		System.out.println("please inpute the email:");
		String email=input.next();
		//verify java file name
		int index=fileName.lastIndexOf(".");
		if(index!=-1&&index!=0&&fileName.substring(index+1,fileName.length() ).equals("java")) {
			fileCorrect=true;  //marked file name correct
		}
		else {
			System.out.println("file name invalid!");
		}
		//verify email name
		if(email.indexOf('@')!=-1&&email.indexOf('.')>email.indexOf('@')) {
			emailCorrect=true;   //marked email correct
		}
		else {
			System.out.println("E-mail invalid!");
		}
		//output the result 
		if(fileCorrect&&emailCorrect) {
			System.out.println("hand in homework successfully!");
		}
		else {
			System.out.println("failed to hand in honework");
		}
	}

}

 

執行截圖: