Introduction
Here is the source code for Main.java
Source
//package com.java2s;
/*
* codjo.net
*
* Common Apache License 2.0
*/
public class Main {
public static String getRidOfHeader(String node) {
int pos = node.indexOf("?>");
pos = node.indexOf('<', pos);
return node.substring(pos);
}
}