【卡贴psd源码】【AI智聊源码】【奇偶猫源码网】mysys源码解析
时间:2024-12-29 11:55:02 分类:热点
1.net代码怎么获取第二行的码解卡贴psd源码数字字符串
net代码怎么获取第二行的数字字符串
public static string IgetNumber(string str)
{
return System.Text.RegularExpressions.Regex.Replace(str, @"[^\d{ 2}-]*", "");
}
public static void Main()
{
string a=IgetNumber("武汉房权证字号第-号");
string b=IgetNumber("武汉房权证字号第号");
Console.WriteLine(a);
Console.WriteLine(b);
}