从整数中获取数字值的简单方法

时间:2015-10-08 07:53:47

标签: swift int digits

我需要细分一个3位数字来获得每个数字的值。我知道如何使用以下内容获取第一个和最后一个数字的值:

var myInt: Int = 248

print(myInt/100) // first number equals 2
print(myInt%10) // last number equals 8

我也知道如何使用以下内容获得中间数字的值:

print((myInt - myInt/100*100 - myInt%10)/10) // middle number equals 4

但是,我觉得我得到中间数字值的方式太乱了,而且可能有更简单的方法来获得相同的结果。

有没有人知道更简单的选项来获得我当前使用的中间数字值?

1 个答案:

答案 0 :(得分:11)

您可以概括结果,但如果您只想要3位数字的中间值:

print((myInt/10)%10)

除以10将数字向下移一位数。然后mod 10得到最后一个移位的数字。

我会将结果概括为第n位,但这里有重要的细节:

% 10 ---> Last digit of a number.
/ 10 ---> Shifts the digits to the right by 1 place (248 -> 24)