Java ASCII from toAscii(int number)

Here you can find the source of toAscii(int number)

Description

Returns an Arabic literal representation of the given number using ASCII-7 characters.

License

Apache License

Parameter

Parameter Description
number to convert

Return

alphanumeric literal representation

Declaration

public final static String toAscii(int number) 

Method Source Code

//package com.java2s;
/* Copyright 2015 Sven van der Meer <vdmeer.sven@mykolab.com>
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * //from   w  ww . j a v  a2 s .c  om
 *     http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

public class Main {
    /**
     * Returns an Arabic literal representation of the given number using ASCII-7 characters.
     * @param number to convert
     * @return alphanumeric literal representation
     */
    public final static String toAscii(int number) {
        return Integer.toString(number);
    }
}

Related

  1. toAscii(byte[] b)
  2. toAscii(byte[] ba)
  3. toAscii(char ch)
  4. toAscii(char source)
  5. toAscii(int i, boolean reversed)
  6. toAscii(String hexStr)
  7. toAscii(String notAscii)
  8. toAscii(String s)
  9. toAscii(String s)