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.
文字列の末尾にある数列を取得したい。例えば
string contentDbIndex = Regex.Match("ab56cd1234", @"\d+").Value;
結果が得られます56が、結果が必要です1234。どうすればいいですか?
56
1234