Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下内容:
<d:RowKey>XXXX004K<
用。。。来代替
<d:RowKey>050505004K<
和
RowKey='XXXX004K'
RowKey='0505050004K'
有人可以帮我解决这些的正则表达式语法。上述“X”的值可以是任意数字。
抱歉,我以前从未使用过正则表达式。我只需要在记事本++ 中执行此操作,它为我提供了搜索字符串的正则表达式选项。
尝试使用简单的字符串
string pattern = @"\d{4}004K"; string search = "<d:RowKey>8989004K<"; var result = Regex.Replace(search, pattern, "050505004K");
尝试
Find What: ([>'])[0-9][0-9][0-9][0-9] Replace With : \1050505
假设 05050504K< 这里有错字