Java String Sanitize sanitizeDescription(String description)

Here you can find the source of sanitizeDescription(String description)

Description

sanitize Description

License

Open Source License

Declaration

public static String sanitizeDescription(String description) 

Method Source Code

//package com.java2s;
/*//from   ww w. j  a  va  2 s.  c o  m
 * Artifactory is a binaries repository manager.
 * Copyright (C) 2013 JFrog Ltd.
 *
 * Artifactory is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Artifactory is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with Artifactory.  If not, see <http://www.gnu.org/licenses/>.
 */

public class Main {
    public static String sanitizeDescription(String description) {
        String prefix = "Maven GAV: ";
        int i1 = description.indexOf(prefix);
        if (i1 != -1) {
            int i2 = description.indexOf(" ", i1 + prefix.length());
            if (i2 != -1) {
                description = description.substring(0, i1)
                        + description.substring(i2);
            }
        }
        return description;
    }
}

Related

  1. sanitizeChatMessage(String message)
  2. sanitizeClassname(String classname)
  3. sanitizeClassName(String s)
  4. sanitizeColumn(String colName, String relationName)
  5. sanitizeCompletion(String replace)
  6. sanitizeDir(String name)
  7. sanitizeFolderName(String s)
  8. sanitizeForCmisName(String in)
  9. sanitizeForCsv(String str)