what do you mean "extracting the string" ?
getting the first occurence of the string is by:
int index = string.indexOf("Telecommunications law");
the most efficient way of getting what is in between the first parenthesis and the second is by:
final String test="http://www.w3.org/2000/01/rdf-schema#label \"Telecommunications law\"@en http://en.wikipedia.org/wiki/";
final int firstIndex=test.indexOf('\"');
final int lastIndex=test.indexOf('\"',firstIndex+1);
final String result=test.substring(firstIndex+1,lastIndex);
System.out.println(result);