org.carewebframework.common.StrUtil.extractInt()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(0.9k)|赞(0)|评价(0)|浏览(186)

本文整理了Java中org.carewebframework.common.StrUtil.extractInt()方法的一些代码示例,展示了StrUtil.extractInt()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。StrUtil.extractInt()方法的具体详情如下:
包路径:org.carewebframework.common.StrUtil
类名称:StrUtil
方法名:extractInt

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");
}

相关文章