我想創建一個模式匹配和替換使用正則表達式的單詞。下面正則表達式匹配一個字符串,並替換
<mycomponent id="Myvalue1.Myvalue2.013D0E13-BF5F-4D0F-AAFA-FA4B120DE3E9"
<mycomponent id="Myvalue3.Myvalue4.013D0E13-BF5F-4D0F-AAFA-FA4B120DE3E9"
<mycomponent id="Myvalue5.Myvalue6.013D0E13-BF5F-4D0F-AAFA-FA4B120DE3E9"
<mycomponent id="Myvalue7.Myvalue8.013D0E13-BF5F-4D0F-AAFA-FA4B120DE3E9"
我的字符串等給出我想要的預期效果是看起來像
<mycomponent id="Myvalue1.Myvalue2"
<mycomponent id="Myvalue3.Myvalue4"
<mycomponent id="Myvalue5.Myvalue6"
<mycomponent id="Myvalue7.Myvalue8"
我不能使用的replaceAll .013D0E13-BF5F-4D0F-AAFA-FA4B120DE3E9空,因爲有是仍在使用GUID
我可以使用下面的模式匹配字符串的一些功能
<mycomponent Id=*.*.013D0E13-BF5F-4D0F-AAFA-FA4B120DE3E9
但是,當我用下面的圖案更換它不工作
<mycomponent Id=*.*.
在你的情況下使用什麼編程語言? – RomanPerekhrest
我想用記事本++替換值。 – TVSuser1654136