码迷,mamicode.com
首页 > 编程语言 > 详细

JAVA去除括号及里面的内容

时间:2020-07-02 10:45:01      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:color   mic   lazy   ring   clear   oid   rgs   replace   image   

public class Test {

    public static void main(String[] args) {
        String str = "-210(10%)-210(10%)";
        str = clearBracket(str, ‘(‘, ‘)‘);
        System.out.println(str);
    }

    /**
     * 去除两符号间内容
     * @param context
     * @param left
     * @param right
     * @return
     */
    private static String clearBracket(String context, char left, char right) {
        int head = context.indexOf(left);
        if (head == -1) {
            return context;
        } else {
            int next = head + 1;
            int count = 1;
            do {
                if (context.charAt(next) == left) {
                    count++;
                } else if (context.charAt(next) == right) {
                    count--;
                }
                next++;
                if (count == 0) {
                    String temp = context.substring(head, next);
                    context = context.replace(temp, "");
                    head = context.indexOf(left);
                    next = head + 1;
                    count = 1;
                }
            } while (head != -1);
        }
        return context;
    }
}

技术图片

 

JAVA去除括号及里面的内容

标签:color   mic   lazy   ring   clear   oid   rgs   replace   image   

原文地址:https://www.cnblogs.com/diehuacanmeng/p/13223334.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!