Java String to DBC ToDBC(String input)

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

Description

To DBC

License

Apache License

Declaration

public static String ToDBC(String input) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static String ToDBC(String input) {
        char[] c = input.toCharArray();
        for (int i = 0; i < c.length; i++) {
            if (c[i] == 12288) {
                c[i] = (char) 32;
                continue;
            }//from  www. j a  v a  2s. c o  m
            if (c[i] > 65280 && c[i] < 65375)
                c[i] = (char) (c[i] - 65248);
        }
        return new String(c);
    }
}

Related

  1. toDBC(String input)
  2. toDBC(String s)