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.
http://test.com/org/category,1/2URL (string) 、この部分から正規表現で削除するにはどうすればよいです か: /2または/2/、C# 言語で
http://test.com/org/category,1/2
/2
/2/
もちろん、 、category,1/412/、category,1/521のような数字があります。category,1/infinity..
category,1/412/
category,1/521
category,1/infinity..
正規表現でこれを行うにはどうすればよいですか?
/\d+/?$空文字列に置き換えたいようです。
/\d+/?$
あなたはそれを行うことができます:
url = Regex.Replace(url, @"/\d+/?$", "");