Java String Substritute substituteInvalidChars(String str)

Here you can find the source of substituteInvalidChars(String str)

Description

substitute Invalid Chars

License

Apache License

Declaration

public static String substituteInvalidChars(String str) 

Method Source Code

//package com.java2s;
/*/*from  w w w.  j a v a 2 s.  c  om*/
 *
 *  Copyright 2016 Netflix, Inc.
 *
 *     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
 *
 *         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 {
    public static String substituteInvalidChars(String str) {
        str = str.replace(' ', '_');
        str = str.replace('.', '_');
        return str;
    }
}

Related

  1. substituteAll(String regexp, String subst, String target)
  2. substituteBlanks(String s, String subst)
  3. substituteCommandLine(String[] parsedCommandLine, String file1Name, String file2Name, String display1, String display2)
  4. substituteEnvironmentVariables(String str, String prefix, String suffix)
  5. substituteHex(String aString)
  6. substituteJobID(String path)
  7. substituteMarkers(String sql, String marker, Object substitution)
  8. substituteNull(String value, String substitution)
  9. substitutePropertyWithIn(String propertyName, String replacementString, String evaluatedString)