提交 f2b7fd2a authored 作者: Thomas Mueller's avatar Thomas Mueller

Add position marker at the end of the statement.

上级 c7ce9257
......@@ -222,7 +222,8 @@ public class StringUtils {
* @return the text with asterisk
*/
public static String addAsterisk(String s, int index) {
if (s != null && index < s.length()) {
if (s != null) {
index = Math.min(index, s.length());
s = s.substring(0, index) + "[*]" + s.substring(index);
}
return s;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论