Here you can find the source of unquoteXML(String xmlFragment)
Parameter | Description |
---|---|
xmlFragment | The fragment of XML to be unquoted. |
public static String unquoteXML(String xmlFragment)
//package com.java2s; /*// ww w . j av a 2s . c o m * Created on 16/07/2004 * YAWLEditor v1.01 * * @author Lindsay Bradford * * * * This library 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 2.1 of the License, or (at your option) any later version. * * This library 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 this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ public class Main { private static final String XML_QUOTE_PREFIX = "<![CDATA["; private static final String XML_QUOTE_SUFFIX = "]]>"; /** * A convenience method that allows for XML fragments, previously quoted * with the {@link #quoteXML(String)} method to be unqoted again. * @param xmlFragment The fragment of XML to be unquoted. * @return A fragment of XML, no longer quoted. */ public static String unquoteXML(String xmlFragment) { if (xmlFragment.startsWith(XML_QUOTE_PREFIX)) { return (xmlFragment.substring(XML_QUOTE_PREFIX.length(), xmlFragment.length() - XML_QUOTE_SUFFIX.length())); } return xmlFragment; } }