首页  >  文章  >  Java  >  使用Java中的Apache Commons库从字符串中删除前导零

使用Java中的Apache Commons库从字符串中删除前导零

PHPz
PHPz转载
2023-09-13 09:33:03864浏览

使用Java中的Apache Commons库从字符串中删除前导零

org.apache.commons.lang.StringUtils 类的 stripStart() 方法接受两个字符串,并从字符串中删除第二个字符串表示的字符集。第一个字符串的字符串。

使用 apache 公共库从字符串中删除前导零 -

  • 将以下依赖项添加到您的 pom .xml 文件

<dependency>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-lang3</artifactId>
   <version>3.9</version>
</dependency>
  • 获取字符串。

  • 将获取的字符串作为第一个参数,将包含 0 的字符串作为第二个参数传递给 StringUtils 类的 Strong>stripStart() 方法。

示例

以下 Java 程序读取将用户的整数值转换为字符串,并使用 StringUtils 类的 stripStart() 方法从中删除前导零。

import java.util.Scanner;
import org.apache.commons.lang3.StringUtils;
public class LeadingZeroesCommons {
   public static void main(String args[]) {
      Scanner sc = new Scanner(System.in);
      System.out.println("Enter a String: ");
      String str = sc.nextLine();
      String result = StringUtils.stripStart(str, "0");
      System.out.println(result);
   }
}

输出

Enter a String:
000Hello how are you
Hello how are you

以上是使用Java中的Apache Commons库从字符串中删除前导零的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:tutorialspoint.com。如有侵权,请联系admin@php.cn删除