Is it possible to parse some java code with regex?
So lets say I want a list of the int variables from this
int abc1 = 1;
int abc2 = abc1 + 1;
int abd 3 =abc1 + abc2;
and I want to put these into a ArrayList
so something like this
private void parse(String s){
List<List<String>> variables = new ArrayList<List<String>>();
list.add(new ArrayList<String>);//var type
list.add(new ArrayList<String>);//var name
list.add(new ArrayList<String>);//var data
Pattern p = Pattern.compile();//This is what I want
Matcher m = p.matcher(s);
while(m.find()){
String match = m.group();
Pattern p2 = Pattern.compile();//Here as well
Matcher m2 = p.matcher(s);
while(m2.find()){
for(int i = 0; i < m.groupCount()){
//add the variables to the lists
}
}
}
}
What I am asking is what regex could possibly handle this task?
The reason for all this is so the user can take a bit of control over the application using a bit of code (an Android Application btw)
If it isn't recommended to use regex what parser should I be using?