python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Splitting a string every 2 digits
I have a column existing of rows with different strings (Python). ex.
5456656352
435365
46765432
...
I want to seperate the strings every 2 digits with a comma, so I have following result:
54,56,65...
Wouter van Epperzeel
Votes: 0
Answers: 2
How to remove a particular digit from an integer using javascript
I have an integer containing various digits, I want to remove 4th digit from an integer. How can I achieve that ?
Example :
let number = 789012345
Here I want to remove 0
Shahnaz Bano
Votes: 0
Answers: 7
How to keep some numbers and delete other numbers in a SQL query
Let's say my data is like:
abcd abcd aaa 1234 1234566789 abcd abcd aaa 123456789 1234sfjsalfj
what I want to do is:
if a number is 3 to 6 digits and there is aaa in front of it, then I keep it.
I do...

Feng Chen
Votes: 0
Answers: 1
Validate complex string input (fixed length pattern)
What is the best way to validate this type of input:
1234,4589,7889
Only allowed numbers. Each number must contain 4 digits. They are separated by ,. There can be one or many. Last item does not have...
Artūras F
Votes: 0
Answers: 1