本文整理了Java中net.sf.okapi.common.Util.strToInt()
方法的一些代码示例,展示了Util.strToInt()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.strToInt()
方法的具体详情如下:
包路径:net.sf.okapi.common.Util
类名称:Util
方法名:strToInt
[英]Converts a string to an integer. If the conversion fails the method returns the given default value.
[中]将字符串转换为整数。如果转换失败,该方法将返回给定的默认值。
代码示例来源:origin: net.sf.okapi.filters/okapi-filter-mosestext
if (m.group(1) != null) {
int id = Util.strToInt(m.group(3), -1);
code = new Code(TagType.OPENING, "g", m.group(1));
code.setId(id);
int id = Util.strToInt(m.group(3), -1);
String name = m.group(1);
if ( name.equals("bx") ) {
代码示例来源:origin: net.sf.okapi.lib/okapi-lib-translation
if ( m.group(1) != null ) {
id = Util.strToInt(m.group(3), -1);
code = new Code(TagType.OPENING, "Xpt", null);
code.setId(id);
id = Util.strToInt(m.group(2).substring(1), -1);
code.setId(id);
codes.add(code);
代码示例来源:origin: net.sf.okapi.lib/okapi-lib-translation
if ( m.group(1) != null ) {
int id = Util.strToInt(m.group(3), -1);
markers = String.format("%c%c", TextFragment.MARKER_OPENING,
TextFragment.toChar(fragment.getIndex(id)));
int id = Util.strToInt(m.group(2).substring(1), -1);
markers = String.format("%c%c", TextFragment.MARKER_ISOLATED,
TextFragment.toChar(fragment.getIndex(id)));
代码示例来源:origin: net.sf.okapi/okapi-core
if (flagsChunk.startsWith("^")) {
flags = Util.strToInt(flagsChunk.substring(1), 0);
内容来源于网络,如有侵权,请联系作者删除!