コード例 #1
0
ファイル: API.java プロジェクト: Firedroide/mChatSuite
 public static String replace(String source, String search, String replace, IndicatorType type) {
   return source.replace(type.getValue() + search, replace);
 }
コード例 #2
0
ファイル: API.java プロジェクト: Firedroide/mChatSuite
  public static String replace(String source, Map<String, String> changes, IndicatorType type) {
    for (Map.Entry<String, String> entry : changes.entrySet())
      source = source.replace(type.getValue() + entry.getKey(), entry.getValue());

    return source;
  }