欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

取字符串某个字符到某个字符的中间值

程序员文章站 2024-02-19 18:16:04
...
public static void main(String[] args) {
        String str = "房估字(2014)第YPQD0006号";

        String jieguo = str.substring(str.indexOf("第")+1,str.indexOf("号"));
        System.out.println(jieguo);
    }