string abc = "07:00 - 19:00"
x = int.Parse(only first two characters) // should be 7
y = int.Parse(only 9th and 10th characters) // should be 19
请问我怎么能这么说?
使用字符串类的 Substring 方法提取所需的字符集。
string abc = "07:00 - 19:00";
x = int.Parse(abc.Substring(0,2)); // should be 7
y = int.Parse(abc.Substring(8,2)); // should be 19
没有int.Parse
一个范围,所以要么:
Substring
,然后int.Parse
在子字符串上使用所以:
x = int.Parse(abc.Substring(0,2));
ETC