0
的位置,我需要向後分析一些代碼,我試圖讓左括號的位置,問題是,在括號內有更多的括號,例如:得到開括號
customerPairs.leftOuterJoin(
sc.textFile("C:/path/transactions_data.txt")
.mapToPair(new PairFunction<String, String, String>() {
public Tuple2<String, String> call(String s) {
String[] transactionSplit = s.split(",");
return new Tuple2<String, String>(transactionSplit[2], transactionSplit[3]+","+transactionSplit[1]);
}
}))
.groupByKey()
所以讀完groupByKey方法,並找到第一個右括號後,我想知道在哪裏開始(與Eclipse一樣,例如)
這aounds如可能解析器會在這裏更好的工具,比正則表達式。 –
如果這將是對任意代碼運行,你還需要識別包含字符串或字符文字中,讓你知道要忽略這些括號的一些方法。正如Tim提到的那樣,您將需要一個合適的解析器來執行此操作。 – JonK
這聽起來很像課程...... – stephendnicholas