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
これはどう言えばいいですか?
string クラスの 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));
等