本文整理了Java中org.carewebframework.common.StrUtil.xlate()
方法的一些代码示例,展示了StrUtil.xlate()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。StrUtil.xlate()
方法的具体详情如下:
包路径:org.carewebframework.common.StrUtil
类名称:StrUtil
方法名:xlate
[英]Replaces one set of characters with another. Each character in the from parameter is replaced by the character in the corresponding position in the to parameter. If no corresponding character is present, the character is removed instead.
[中]将一组字符替换为另一组字符。from参数中的每个字符都将替换为to参数中相应位置的字符。如果不存在相应的字符,则会删除该字符。
代码示例来源:origin: org.carewebframework/org.carewebframework.vista.api.core
public static String trimNarrative(String narrative) {
return StrUtil.xlate(narrative == null ? "" : narrative, "^\n\r", " ").trim();
}
代码示例来源:origin: org.carewebframework/org.carewebframework.rpms.ui.core
protected void doSearch(String searchText) {
searchText = searchText == null ? "" : StrUtil.xlate(searchText.toUpperCase(), StrUtil.U, "");
if (searchText.contains(" - ")) {
searchText = StrUtil.piece(searchText, " - ");
}
if (!searchText.isEmpty() || lookupParams.isLookupNull()) {
List<String> sRpc = executeRPC(searchText);
if (PCC.errorCheck(sRpc)) {
btnSelect.setDisabled(true);
//Collapse
//RunQuery = sRpc = ""
return;
}
btnSelect.setDisabled(false);
//Expand
loadResults(sRpc);
}
}
代码示例来源:origin: org.hspconsortium.carewebframework/cwf-ui-smart
definition.setId(StrUtil.xlate(manifest.getValue("client_id"), " @", "__"));
definition.setName(name);
definition.setUrl(manifest.getValue("launch_uri"));
内容来源于网络,如有侵权,请联系作者删除!