Tagged Questions
The zeroes tag has no wiki summary.
11
votes
2answers
1k views
Algorithms to trim leading zeroes from a SQL field?
I just came across the interesting problem of trying to trim the leading zeroes from a non-numeric field in SQL. (Since it can contain characters, it can't just be converted to a number and then ...
3
votes
1answer
2k views
Regex to add padding zeroes
I am working on this yahoo pipe Regex and I found a bug I'm unable to wrap my mind around it.
I have a URL, from which I extract digits, cat them and make a img html tag and embed it. The issue is ...
2
votes
5answers
202 views
Trim any zeros at the beginning of a string using PHP
Users will be filling a field in with numbers relating to their account. Unfortunately some users will have zeroes prefixed to the beginning of the number to make up a six digit number (e.g. 000123, ...
1
vote
1answer
107 views
MATLAB Remove Only Certain Zeros from Matrix
I have seen plenty of answers regarding how to remove leading and/or trailing zeros, and how to remove all zeros from a vector or matrix. What I need to do, though, is only remove some of them. I ...
1
vote
3answers
85 views
C++, Reading off the end of an array: running in terminal vs. debugger
I encountered an error in my code where an if() statement was checking a value off the end of an array. IE,
int arrayX [2];
if(arrayX [2])
FunctionCall();
This was leading to a function call ...
1
vote
1answer
330 views
Why does gzip/deflate compressing a small file result in many trailing zeroes?
I'm using the following code to compress a small (~4kB) HTML file in C#.
byte[] fileBuffer = ReadFully(inFile, ResponsePacket.maxResponsePayloadLength); // Read the entire requested HTML file into a ...
1
vote
2answers
505 views
MySQL 5.1.41 leading zero is deleted
I have a MySQL database where i want to store phonenumbers among other things.
The fieldtype is INT(10)
When I try to insert a number starting with a 0, like 0504042858 it's stored like 504042858. ...
0
votes
6answers
115 views
Perl - Remove trailing zeroes without exponential value
I am trying to remove trailing zeroes from decimal numbers.
For eg: If the input number is 0.0002340000, I would like the output to be 0.000234
I am using sprintf("%g",$number), but that works for ...
-2
votes
5answers
126 views
Deleting characters from C string
Given a string (as the argument to function), after a given combination of characters, I need to delete the sequence of zeros, if exits(it only necessarily to modify the string). For example, if the ...