本文整理了Java中org.carewebframework.common.StrUtil.extractInt()
方法的一些代码示例,展示了StrUtil.extractInt()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。StrUtil.extractInt()
方法的具体详情如下:
包路径:org.carewebframework.common.StrUtil
类名称:StrUtil
方法名:extractInt
[英]Extracts an integer portion at the beginning of a string. Parsing stops when a non-digit character or the end of the string is encountered.
[中]提取字符串开头的整数部分。遇到非数字字符或字符串结尾时,解析停止。
代码示例来源:origin: org.carewebframework/org.carewebframework.common
public Version(String value) {
if (value != null && !value.isEmpty()) {
String[] pcs = StrUtil.split(value, ".", 4);
for (int i = 0; i < 4; i++) {
seq[i] = StrUtil.extractInt(pcs[i]);
}
}
}
代码示例来源:origin: org.carewebframework/org.carewebframework.cal.ui.reporting
private void adjustGrid() {
int w = (StrUtil.extractInt(getWidth()) - 40) / 3;
colLabel.setWidth(w + "px");
colValue.setWidth((w * 2) + "px");
}
内容来源于网络,如有侵权,请联系作者删除!