我有一個很長的模板,我需要從某些模式中提取某些字符串。當我通過一些例子時,我發現在這種情況下量詞的使用很好。例如,以下是我的模板,我需要從中抽取while
和doWhile
。Java模式匹配
This is a sample document.
$while($variable)This text can be repeated many times until do while is called.$endWhile.
Some sample text follows this.
$while($variable2)This text can be repeated many times until do while is called.$endWhile.
Some sample text.
我需要提取整個文本,從$while($variable)
開始直到$endWhile
。然後我需要處理$ variable的值。之後,我需要在原始文本之間插入$while
和$endWhile
之間的文本。 我有提取變量的邏輯。但我不確定如何在這裏使用量詞或模式匹配。 有人可以爲我提供一個示例代碼嗎?任何幫助將不勝感激