Java ASCII from toAsciiFilename(String string)

Here you can find the source of toAsciiFilename(String string)

Description

to Ascii Filename

License

Open Source License

Declaration

public static String toAsciiFilename(String string) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Copyright (c) 2010 Robert "Unlogic" Olofsson (unlogic@unlogic.se).
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the GNU Lesser Public License v3
 * which accompanies this distribution, and is available at
 * http://www.gnu.org/licenses/lgpl-3.0-standalone.html
 ******************************************************************************/

public class Main {
    public static String toAsciiFilename(String string) {

        return string.replaceAll("[^0-9a-zA-Z-.]", "_");
    }//  ww  w.  j  ava2 s . c om
}

Related

  1. toAsciiBytes(final String value)
  2. toAsciiBytes(String str)
  3. toAsciiChar(byte b)
  4. toAsciiChar(int i)
  5. toASCIICode(byte[] bts)
  6. toAsciiLowerCase(char ch)
  7. toAsciiString(byte[] buffer)
  8. toAsciiString(byte[] buffer, int startPos, int length)
  9. toAsciiString(byte[] bytes)