我正在使用 Java 实现一个词法分析器。在“String palavras_reservadas”里面,我有所有不能用来命名变量之类的保留字。Matcher 负责在我的输入代码中查找那些保留字。我将输入代码中的所有行放在名为“vetor1”的 ArrayList 的不同位置。当我找到一个保留字时,我想拆分这个“vetor1”。例如,我有这个代码作为我的输入:
a = b + c;
if (a > b)
c = c + b;
我的代码会将每一行放在数组的不同位置:
v[0] = a = b + c;
v[1] = if (a > b)
v[2] = c = c + b;
我想做的是:
v[0] = a = b + c;
v[1] = if
v[2] = (a > b)
v[3] = c = c + b;
(或类似的东西)。我可以使用 split 来做到这一点吗?
这是我到目前为止所拥有的:
public class AnalisadorLexico {
public static void main(String args[]) throws FileNotFoundException {
List<String> vetor1 = new ArrayList<String>();
File text = new File("/Users/Mvaguimaraes/Desktop/codigo.marcos");
Scanner scnr = new Scanner(text);
String palavras_reservadas = "fim-se|enquanto|então|se|senão|para|de|até|faça|fim-para|fim-enquanto";
Pattern r = Pattern.compile(palavras_reservadas);
int i = 0;
while(scnr.hasNextLine())
{
String line = scnr.nextLine();
vetor1.add(line);
Matcher m = r.matcher(scnr.nextLine());
if (m.find( )) {
System.out.println("Found value: " + m.group());
}
}
for(i = 0; i<vetor1.size(); i++)
{
String value = vetor1.get(i);
System.out.println(value);
}
}
}