Доброго времени суток! Подскажите пожалуйста:
Pattern t = Pattern.compile("([a-z0-9_]+)");
//где M стринга ${file}
Matcher n = t.matcher(M);
String param = n.group();
try
{
FileWriter f0 = new FileWriter("/tmp/file1.txt",true);
f0.write("param="+param+"\n");
f0.close();
}
catch (IOException exception)
{
exception.printStackTrace();
}