About 50 results
Open links in new tab
  1. math - C: how to break apart a multi digit number into separate ...

    Feb 3, 2018 · Say I have a multi-digit integer in C. I want to break it up into single-digit integers. 123 would turn into 1, 2, and 3. How can I do this, especially if I don't know how many digits the integer...

  2. What's the difference between str.isdigit (), isnumeric () and ...

    s.isdigit() s.isnumeric() s.isdecimal() I always get as output either all True or all False for each value of s (which is a string). What's the difference between the three? Can you provide an example that gives …

  3. What every digit means in software version (1.7.1.0, for example)?

    May 7, 2010 · What could every digit mean in software version? (for example, 1.7.1.0) How do you numerate your versions?

  4. Getting each individual digit from a whole integer

    Getting each individual digit from a whole integer Asked 15 years, 8 months ago Modified 1 year, 9 months ago Viewed 171k times

  5. python - Check if a string contains a number - Stack Overflow

    Nov 8, 2013 · The first method will return the first digit and subsequent consecutive digits. Thus 1.56 will be returned as 1. 10,000 will be returned as 10. 0207-100-1000 will be returned as 0207.

  6. Regular expression to match standard 10 digit phone number

    Regular expression to match standard 10 digit phone number Asked 12 years, 9 months ago Modified 1 year, 11 months ago Viewed 1.0m times

  7. Notepad++ find and replace number, digit format - Stack Overflow

    Dec 13, 2013 · I have single and two digit number, and I want to make it 4 digits. So "1" become "0001", "22" become "0022" How do I do that?

  8. Sorting 1 million 8-decimal-digit numbers with 1 MB of RAM

    Oct 21, 2012 · 1M of RAM means 2^20 bytes? And how many bits are in a byte on this architecture? And is the "million" in "1 million 8 digit decimal numbers" a SI million (10^6)? What is a 8 digit …

  9. How to split an integer into a list of digits? - Stack Overflow

    Dec 15, 2009 · Convert the number to a string so you can iterate over it, then convert each digit (character) back to an int inside a list-comprehension:

  10. Difference between Char.IsDigit() and Char.IsNumber() in C#

    Oct 23, 2008 · This contrasts with IsDigit, which determines if a Char is a radix-10 digit. Valid numbers are members of the following categories in UnicodeCategory: DecimalDigitNumber Decimal digit …