作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我有字符串:“aab + bab = b ”,我想要
a
字符替换为整数 0,b
字符替换为整数 1所以它会变成:
001 + 101 = 1
最简单的方法是什么?
到目前为止,我将方程分为三个部分:
System.out.println("Enter an Equation of variables");
_inString = _in.nextLine();
//find the three different parts of the equation
String _noSpaces = _inString.replaceAll("\\s+","");
String delims = "[+,=]";
String[] _tokens = _noSpaces.split(delims);
最佳答案
您可以将replace
方法链接在一起
String str = " aab + bab = b ";
str = str.replace("a", "0").replace("b", "1");
我们需要重新赋值给“str”,因为 str.replace() 返回一个新字符串,而原始字符串将保持不变。 【因为Java中String是不可变的】
关于java - 如何用整数替换字符串中的字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18673651/
我是一名优秀的程序员,十分优秀!