0
我需要一個匹配'xmlAttributeReplace ='和大括號後面的引號的正則表達式。然後我用空字符串替換這些匹配。LookBehind正則表達式的語法
樣品輸入
<autoUnlockSection xmlAttributeReplace="#{token.variable.sample}"
xdt:Transform="Replace"/>
目前,我有以下
xmlAttributeReplace="|(?<=})"
我的問題是我如何找到引用下面的花括號是不正確。外觀背後應該尋找
- xmlAttributeReplace =
- 報價和xmlAttributeReplace =
是否有大師在這裏正則表達式誰可能知道正確的語法之間沒有空格?
您正在使用哪種編程語言? – Allan
爲什麼在使用正則表達式時它更簡單,更簡單,更可靠,更不容易出錯,無法使用現有的XML解析器? – ikegami