Integer utilities

How can I find out the order value of a number in an Integer variable? For example, in the number 1324, how can I find out what digit will be in the order of tens? Hundreds? Thousands?

1 Like

You can turn it into a string and use substring :slight_smile:

Please, explain me
What this parameters mean?

1 Like

In the string “abc”,

“b” is at index 1, length 1

“ab” is at index 0, length 2

etc…

LogBlueprintUserMessages: [test_C_3] Value: 1234, 10s Digit: 3

Likewise if you want 100s, divide by 100 mod by 10; for thousands, divide by 1000 and mod by 10.