我想将一个字符串“00608436483”拆分成每个数字
$scope.showAlert = function(text) {
console.log('click!');
};
minArray = hoursMin[1].Split('');
min = Convert.ToInt32(minArray[0]);
是hoursMin[1]
我希望我有一个数组 - >
00608436483
...
例如
答案 0 :(得分:4)
您可以从字符串中获取每个字符并将其转换为数字:
string s = "1234";
IEnumerable<int> values = s.Select(c => c - '0' /* which is ASCII value 48 */);
此代码的作用: