本文介绍了如何计算字符串中的括号?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是我计算字符串中括号数量的方法.

This is my method to count the number of parentheses in a string.

public int checkParenthesis(String print, char par){
    int num = 0;
    for(int i = 0; i<print.length(); i++){
        if(print.indexOf(i) == par){
            num++;
        }
    }
    return num;
}

它不起作用.返回0. print 是随机字符串,而 par 是括号.

It doesn't work. It returns 0.print is a random string and par is a parenthesis.

推荐答案

您需要使用 .charAt 来获取当前字符并将其与 par 进行比较:

You need to use .charAt to get the current character and compare it with par:

if(print.charAt(i) == par)

另一种方法:

for(char c : print.toCharArray()) {
  if(c == par) {
    num++;
  }
}

这篇关于如何计算字符串中的括号?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-16 11:05