About 62 results
Open links in new tab
  1. vocabulário - Qual é a maior palavra no Português que não tenha …

    Aug 19, 2015 · Vi isso no Puzzling (em Inglês) e gostaria de saber qual seria a maior palavra sem nenhuma letra repetida em Português. Link: Longest word in English without repeated letter …

  2. Does there exist a prime that is only consecutive digits starting …

    You'll need to complete a few actions and gain 15 reputation points before being able to upvote. Upvoting indicates when questions and answers are useful. What's reputation and how do I …

  3. Convert Number into Words in the Indian Numbering System

    May 29, 2018 · I am converting numbers to words with this code select to_char(to_date(:number,'j'),'jsp') from dual; when I enter value 100000 then output is One …

  4. Regex to match 10 or 12 digits only - Stack Overflow

    May 9, 2017 · I tried to write a regex to match a 10 or 12 digits number combination. like: 1234567890 - True 123456789012 - True 12345678901 - False 123456- False …

  5. Java Format Number with Blanks - Stack Overflow

    Oct 22, 2021 · I have a number like this: 1234567890123 and want to format it for example like this 12 34567 89012 3 or maybe like this 1-234 567-890 1 23 How can I achive that? I tried …

  6. How to convert string to double with specified number of …

    Mar 11, 2016 · To be more precise, according to IEEE-754 double-precision floating point format 1234567890123.4 is represented as the hexadecimal value of 4271F71FB04CB666, where in …

  7. sequences and series - Mathematics Stack Exchange

    Oct 4, 2016 · Related to this question, What is the smallest prime number made of sequential number? are there infinitely many primes of the following form (OEIS A057137)? $1, 12, 123, …

  8. validation - Regex to validate numbers before and after decimal ...

    Mar 29, 2019 · I am trying to validate decimal number of 13 digit before and 4 digit after dot excluding comma , i.e comma shouldn't be counted as a digit. Valid Cases …

  9. Show Normal Number Instead of Exponential Form - Stack Overflow

    I want to show number in a Normal form instead of Exponential Form For Example My Number is stored in a double variable with value 1234567890123 I want to get the exact representation. …

  10. Regex 3 number parts separated with dash - Stack Overflow

    Feb 24, 2014 · I want to create a RegExp validation in JavaScript for string which can have 3 parts: P1-P2-P3 With following rules: P1, P2 and P3 can only be digits each part can be 1-13 …