removeU200B static method

String removeU200B(
  1. String text
)

移除\u200B

Implementation

static String removeU200B(String text) {
  return text.replaceAll("\u200B", "");
}