Skip to content

Instantly share code, notes, and snippets.

@VEINHORN
Created April 21, 2014 14:02
Show Gist options
  • Save VEINHORN/11143642 to your computer and use it in GitHub Desktop.
Save VEINHORN/11143642 to your computer and use it in GitHub Desktop.
Sample
package com;
import com.entities.*;
import com.utils.ListingAnalyzer;
import com.utils.TextLoader;
import com.utils.TextParser;
import java.util.ArrayList;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* Created by veinhorn on 4/7/14.
*/
public class Test {
public static void main(String[] args) {
Text text = TextParser.parseText(TextLoader.readText());
System.out.println(text.toString());
TextLoader.writeText(text.toString());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment