com.crabshue.commons.xml.processinginstructions.ProcessingInstructionsConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-xml Show documentation
Show all versions of commons-xml Show documentation
Library for XML documents operations.
package com.crabshue.commons.xml.processinginstructions;
/**
* Constants for processing instructions.
*
*/
public class ProcessingInstructionsConstants {
protected ProcessingInstructionsConstants() {
}
public static final String PROCESSING_INSTRUCTION_REGEXP = "<\\?.*?\\?>";
public static final String PROCESSING_INSTRUCTION_START = "\\s*?<\\?.*";
}