您好,登錄后才能下訂單哦!
這篇文章運用了實例代碼展示java用正則表達式判斷字符串是否為數字的方法,代碼非常詳細,可供感興趣的小伙伴們參考借鑒,希望對大家有所幫助。
package com.yinxin.util; import java.util.regex.Matcher; import java.util.regex.Pattern; public class Test { /** * 判斷一個字符串是否是數字。 * * @param string * @return */ public static boolean isNumber(String string) { if (string == null) return false; Pattern pattern = Pattern.compile("^-?\\d+(\\.\\d+)?$"); return pattern.matcher(string).matches(); } private static void isNumberTest() { System.out.println(isNumber("580")); System.out.println(isNumber("5234254125424584")); System.out.println(isNumber("dfg15s4df5sd1fds")); } public static void main(String[] args) { isNumberTest(); } }
matches() 方法用于檢測字符串是否匹配給定的正則表達式。
調用此方法的 str.matches(regex) 形式與以下表達式產生的結果完全相同:
Pattern.matches(regex, str)
語法
public boolean matches(String regex)
參數:regex -- 匹配字符串的正則表達式。
返回值:在字符串匹配給定的正則表達式時,返回 true。
以上就是java用正則表達式判斷字符串是否為數字的方法,看完之后是否有所收獲呢?如果想了解更多相關內容,歡迎關注億速云行業資訊!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。