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
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.
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.