我需要计算字符串中的前导零。这是我发现的整数前导零计数 static int LeadingZeros(int value){ // Shift right unsigned to work with both positive and negative values var uValue = (uint) value; int leadingZeros = 0; while(uValue != 0) { uValue = uValue >> 1; leadingZeros++; } return (32 - leadingZeros);}但找不到计算字符串中的前导零。string xx = "000123";上面的例子有 000 所以我想得到结果计数为 3我如何计算字符串中的零?如果有人给我小费非常感谢
- 2 回答
- 0 关注
- 119 浏览
添加回答
举报
0/150
提交
取消