Android Unicode Convert ToDBC(String input)

Here you can find the source of ToDBC(String input)

Description

To DBC

Declaration

public static String ToDBC(String input) 

Method Source Code

//package com.java2s;

public class Main {

    public static String ToDBC(String input) {
        if (input == null) {
            return "";
        }/*from  w w w  .  ja  va2  s  .  c o  m*/
        char[] c = input.toCharArray();
        for (int i = 0; i < c.length; i++) {
            if (c[i] == 12288) {
                c[i] = (char) 32;
                continue;
            }
            if (c[i] > 65280 && c[i] < 65375)
                c[i] = (char) (c[i] - 65248);
        }
        return new String(c);
    }
}

Related

  1. zenkakuToHankaku(String value)
  2. unicodePreservingIndex(String paramString, int paramInt)
  3. unicodePreservingIndex(String str, int index)
  4. fullWidthToHalfWidth(String s)
  5. getEncodedSize(String value)