正規表示式 和 md5加密

2021-08-19 15:18:30 字數 1138 閱讀 8280

//用法

boolean

d=ismobile(zc_mobile);

//驗證手機號的正規表示式 方法

public static boolean ismobile(string number) ";//"[1]"

代表第1

位為數字1,

"[34578]"

代表第二位可以為3、

4、5、

7、8中的乙個,

"\\d"

代表後面是可以是0~

9的數字,有9位。

if (textutils.isempty(number)) else }/

//使用方法string secretsign=md5util.getstringmd5_16(zc_password);

//md5

加密方法

public static class md5util ;

public static string getbytesmd5(byte bytes)

return new string(str);

} catch (exception e)

}/**

* 返回字串的32位

md5值**

@param

s*

字串*

@return

str md5值*/

public final static string getstringmd5(string s)

/*** 返回字串的16位

md5值**

@param

s*

字串*

@return

str md5值*/

public final static string getstringmd5_16(string s)

public final static string getbitmapmd5(bitmap bm)

public final static string getbitmapmd5_16(bitmap bm)

public static byte bitmaptobytes(bitmap bm)

}

正規表示式5

將乙個給定的字串切割成多個子字串,返回的資料型別是string public static void main string args 將乙個給定的字串變成乙個新的字串,返回的資料型別為string public static void main string args string result1...

MD5加密和RSA加密

1.md5加密 md5 單向雜湊演算法 的全稱是message digest algorithm 5 資訊 摘要演算法 md5演算法的使用不需要支付任何版權費用。md5的功能 輸入任意長度的資訊,經過處理,輸出為128位的資訊 數字指紋 不同的輸入得到的不同的結果 唯一性 根據128位的輸出結果不可...

MySQL正規表示式搜尋 md

3 進行or匹配 4 匹配幾個字元之一 5 匹配範圍 6 匹配特殊字元 7 匹配字元類 8 匹配多個例項 9 定位符 正規表示式的作用就是匹配文字,將乙個模式與文字串進行比較。和熟知的正規表示式相比,sql語言僅僅支援少量,是乙個子集。以簡單例子開始,mysql select prod name f...