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

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

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

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

相关文章