All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.bestwu.lang.keyword.replace.DefaultReplaceStrategy Maven / Gradle / Ivy

There is a newer version: 1.1.6
Show newest version
package cn.bestwu.lang.keyword.replace;

import java.util.Arrays;

/**
 * 默认替换策略,匹配的字符替换为“*”
 *
 * @author Peter Wu
 */
public class DefaultReplaceStrategy implements ReplaceStrategy {

  @Override
  public char[] replaceWith(char[] words) {
    Arrays.fill(words, '*');
    return words;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy