2024-05-16 11:41:53
static void Main(string[] args)
{
string name;
string server;
F("1234@456.com", out name, out server);
Console.WriteLine(name);
Console.WriteLine(server);
Console.ReadLine();
}
public static void F(string s, out string a, out string b)
{
string[] ss = s.Split(new char[] { '@' },
StringSplitOptions.RemoveEmptyEntries);
a = ss[0];
b = ss[1];
}
string[] ss = s.Split(new char[] { '@' },
StringSplitOptions.RemoveEmptyEntries);
请帮我理解一下这条?
以@为分隔符拆分成字符串数组,去掉空字符串。
IndexOf 找到@的位置,怎么写?
public static void F(string s, out string a, out string b)
{
int x = s.IndexOf("@");
a = s.Substring(0, x);
b = s.Substring(x + 1);
}
2024-05-16 11:04:52
你可以做个小实例给我看看吗?
有关正则表达式方面的,网上有很多资料的:http://www.jbxue.com/article/10372.htmlhttp://www.ideek.cn