Tagged Questions

2
votes
2answers
174 views

Perl: replace consecutive digits with their count

My first questions here. I have a string of digits like 55111233 as you can see 5 is consecutive twice, 1 thrice 2 once and 3 twice. I want it to be replaced into 52132132 in general ...
2
votes
2answers
2k views

Ruby: counting digits in a float number

Is there any worthy Ruby method to count the number of digits in a float? Also, how do I specify the precise when to_s float numbers?
1
vote
6answers
151 views

Python: Define a function using a variable?

I am trying to define a function that will include a variable n where n will be a string of numbers e.g. "3884892993", the definition of the function starts as is_true(n), however if n is going to be ...
1
vote
5answers
58 views

Limiting Number of Digits in PHP

I'm displaying how large a list of files are in a table using PHP. I'd like to display how big they are in megabytes instead of the default bytes. The problem I'm having is that I get extremely long ...
1
vote
7answers
169 views

C#: Anything similar to the php ctype_digit function for C#?

I have a string and I want to check that it only consists of digits. I don't really want to (or need to) parse it or anything, I just want to know that it does not contain anything but digits (and no ...
0
votes
1answer
28 views

Find a set of numbes in long string using RegEx

Ive been searching the Stackoverflow but couldnt find the exact thread that could help me. My problem is this, i want to be able to find and take out any occurances of 8 digits wihtin a string. Dim ...
0
votes
3answers
105 views

Python - How to manipulate digits within an integer/string?

I am looking for a general way to refer to particular digits in a integer or string, I need to be able to perform different operations on alternating digits and sum the result of all of those returned ...
0
votes
3answers
401 views

in python how do I convert a single digit number into a double digits string?

So say i have a = 5 i want to print it as a string '05'
0
votes
7answers
1k views

Multiplying two number arrays

Can anyone please tell me how to multiply two number arrays in C? The number arrays are basically derived from two strings containing digits. eg: 123456 and 132465. Edit: I had two string as S1 = ...