adding experiment result

This commit is contained in:
Manindra Moharana
2013-03-30 02:23:46 +05:30
parent 9f0e4b7276
commit cb3f60ed7f
10 changed files with 2471 additions and 582 deletions

2
pdex/src/processing/mode/experimental/Problem.java Executable file → Normal file
View File

@@ -130,7 +130,7 @@ public class Problem {
public static String process(String message) {
// Remove all instances of token
// "Syntax error on token 'blah', delete this token"
if(message == null) return null;
pattern = Pattern.compile(tokenRegExp);
matcher = pattern.matcher(message);
message = matcher.replaceAll("");