About 27,700 results
Open links in new tab
  1. regex - Regular expression for nnn or nnn.nnn - Stack Overflow

    Aug 16, 2016 · Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about your product, service or employer brand

  2. python - How to compute the value of n+nn+nnn+nnnn with a …

    Apr 28, 2020 · Write a program that computes the value of n+nn+nnn+nnnn with a given digit as the value of n. For example, if n=9 , then you have to find the value of 9+99+999+9999. I need some pointers to make this code dynamic in nature.

  3. Get NN.NNNNN format in decimal.ToString () in C# - Stack Overflow

    Nov 22, 2012 · How i can get format NN.NNNN,NN after decimal.ToString() I tried: value.ToString("00.0000,00") But on output i have in NN.NNNNNN format, without comma...

  4. How to write python program that computes the value of …

    Oct 19, 2019 · How to compute the value of n+nn+nnn+nnnn with a given digit as the value of n. 0.

  5. how can we print (n +nn +nnn) using println for this code?

    Feb 23, 2020 · int n; Scanner in = new Scanner(System.in); System.out.print("Input number: "); n = in .nextInt(); System.out.println(n " + " nn ); //this is not working how can i ...

  6. Regexp format "YYYY/NNNN" or "YYYY/NNNN/Country code"

    Oct 30, 2020 · You can match the first part with the digits and the forward slash, and make the whole last part including the / optional asserting a whitspace boundary at the right using (?!\S)

  7. Change format of phone number field in MySQL table

    Oct 7, 2019 · I have a MySql table with an imported phone number field that accidentally was imported in the format NNN-NNNN-NNN. I would like to change any phone numbers in that format to the format NNN-NNN-NNNN. The fields that I want to test for the invalid format (and update if incorrect) can be identified with the following query:

  8. How to sum numbers with formats like N.NNNN,NN in JavaScript

    Apr 7, 2020 · Well, long story short. I'm looking for a way to sum numbers with comma for decimals and thousand seperator. Currently, I'm trying to format the number with sumamount += parseFloat(this.value.re...

  9. Regex to match N-NN-NN - Stack Overflow

    Jun 8, 2010 · I need some help with a RegEx pattern match. How do i write a regex if i want it to match N-NN-N-NN-NN-N-NNN but also N-NN-NN-NN Exmaple: 10pcs- ratchet spanner combination wrench 6-8-10-11-1...

  10. Oracle Regular Expression to match US Phone Number Format

    Jan 28, 2013 · Oracle Regular Expression To match US Phone Number in the following formats only. (NNN) NNN-NNNN or NNN-NNN-NNNN or NNNNNNNNNN I have tried and came up to this : with test as ( select '(444) 123...

Refresh