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中文网其他相关文章!