使用正则表达式从Java中的字符串中移除前导零
String类的replaceAll()方法接受两个字符串,分别表示正则表达式和替换字符串,并用给定的字符串替换匹配的值。
以下是匹配字符串前导零的正则表达式−
The ^0+(?!$)";
要移除字符串中的前导零,将此内容作为第一个参数传递,将“”作为第二个参数传递。
示例
以下Java程序从用户读取一个整数到一个字符串中,并使用正则表达式移除其中的前导零。
import java.util.Scanner; public class LeadingZeroesRE { public static String removeLeadingZeroes(String str) { String strPattern = "^0+(?!$)"; str = str.replaceAll(strPattern, ""); return str; } public static void main(String args[]){ Scanner sc = new Scanner(System.in); System.out.println("Enter an integer: "); String num = sc.next(); String result = LeadingZeroesRE.removeLeadingZeroes(num); System.out.println(result); } }
输出
Enter an integer: 000012336000 12336000
广告