Tagged Questions
The length tag has no wiki summary.
55
votes
2answers
13k views
Maximum length of the textual representation of an IPv6 address? [closed]
I want to store the data returned by $_SERVER["REMOTE_ADDR"] in PHP into a DB field, pretty simple task, really. The problem is that I can't find any proper information about the maximum length of the ...
20
votes
2answers
5k views
std::string length() and size() member functions
I was reading the answers for this question and found that there is actually method called length() for strings (I always used size()). Is there any specific reason for having this method in string ...
18
votes
4answers
836 views
How to tell if a list is infinite?
Is there a way to tell if a list in Haskell is infinite? The reason is that I don't want to apply functions such as length to infinite lists.
17
votes
9answers
2k views
How long should SQL email fields be?
I recognize that an email address can basically be indefinitely long so any size I impose on my varchar email address field is going to be arbitrary. However, I was wondering what the "standard" is? ...
16
votes
8answers
558 views
How long can a webpage be?
Bit of a bizarre question, but does anyone know the actual limit to the length of a webpage, and why it is the limit?
As an experiment, I'm using HTML and CSS to make a site that represents a journey ...
15
votes
2answers
1k views
Improving pure Python prime sieve by recurrence formula
I am trying to optimize further the champion solution in prime number thread by taking out the complex formula for sub-list length. len() of the same subsequence is too slow as len is expensive and ...
13
votes
2answers
316 views
What does the .NET String.Length property return? Surrogate neutral length or complete character length
The documentation and language varies between VS 2008 and 2010:
VS 2008 Documentation
Internally, the text is stored as a readonly collection of Char objects, each of which represents one ...
13
votes
5answers
5k views
Maximum value of long number?
I'm trying to declare a long value in Java, which unfortunately does not work.
This is my code. It results in the following error message: "The literal 4294967296 of type int is out of range".
long ...
13
votes
5answers
1k views
Max length of an openID
I'm planning to add openid support for a web application I'm building. I can't seem to find the maximum length of a valid openid so I can store it in my database. I've seen some vague references to ...
13
votes
4answers
6k views
R: How to access the last value in a vector?
Yes people, even though I'm talking about the R Project for Statistical Computing, it can still require programming!
Suppose I have a vector that is nested in a dataframe one or two levels. Is there ...
11
votes
4answers
8k views
If element exists, do X (jQuery)
I currently do this to check if an elements exists:
if ($(".element1").length > 0 || $(".element2").length > 0 {
...stuff...
}
Is there a better way to rewrite the same? I mean, ".length" ...
9
votes
2answers
6k views
MySQL - How to select data by string length
SELECT * FROM table ORDER BY string_length(column);
is there a mysql function to do this (of course instead of "string_length")?
thank you!
9
votes
5answers
1k views
Is there any built-in way to get the length of an iterable in python?
For example, files, in Python, are iterable - they iterate over the lines in the file. I want to count the number of lines.
One quick way is to do this:
lines = len(list(open(fname)))
However, ...
8
votes
2answers
233 views
Is there *any* way to get the length of a C-style array in C++/G++?
I've been trying to implement a lengthof (T* v) function for quite a while, so far without any success.
There are the two basic, well-known solutions for T v[n] arrays, both of which are useless or ...
8
votes
6answers
7k views
United States Banking Institution Account Number Regular Expression?
I have been tasked to "verify" the length of a U.S. Banking Institution ACCOUNT NUMBER for a web app I'm developing. I cannot find anything through SOF, Google, Fed reserve etc that outlines an ...
7
votes
3answers
833 views
Difference between MATLAB's numel and length functions
I know that length(x) returns max(size(x)) and numel(x) returns the total number of elements of x, but which is better for a 1 by n array? Does it matter, or are they interchangeable in this case?
...
7
votes
1answer
2k views
What does the length attribute do when set on the @Column JPA annontation?
What exactly does setting the length on a column do in JPA?
@Column(name = "middle_name", nullable = false, length = 32)
public String getMiddleName() {
return this.middleName;
}
I understand ...
7
votes
4answers
317 views
Array length with pointers
How in C++ get array length with pointers only ? I know that tab name is pointer to first element, but what next ?
7
votes
8answers
6k views
Length of an integer in python
In python, is there a command similar to len() which works on integers?
Thanks
7
votes
7answers
1k views
Is there a standard function in C that would return the length of an array?
Is there a standard function in C that would return the length of an array?
7
votes
8answers
11k views
6
votes
5answers
686 views
PHP shortest/longest string in array
I have an array like this
$data = array(
"163",
"630",
"43",
"924",
"4",
"54"
);
How can I select the smallest and largest values from it according to string length NOT ...
6
votes
3answers
259 views
is there a length limit on g++ variable names?
see title
and some filler text
to deal with the requirement of minimum body text
i hope you're happy now arbitrary limits
6
votes
3answers
2k views
Javascript array length incorrect on array of objects
Could someone explain this (strange) behavior? Why is the length in the first example 3 and not 2, and most importantly, why is the length in the second example 0? As long as the keys are numerical, ...
6
votes
10answers
1k views
How to calculate the length of a string in C efficiently?
How to calculate the length of a string in C efficiently (in time)?
Right now I'm doing:
int calculate_length(char *string) {
int length = 0;
while (string[length] != '\0') {
...
6
votes
8answers
16k views
Length of an Array in Objective C
I haven't found answer in any of the questions asked.
I am passing an Integer Array to a function.Now I want to traverse through the array.But as things worked in C,C++ by simple using ...
6
votes
6answers
2k views
What size to pick for a (n)varchar column?
In a slightly heated discussion on TDWTF a question arose about the size of varchar columns in a DB.
For example, take a field that contains the name of a person (just name, no surname). It's quite ...
5
votes
1answer
79 views
PHP mysql WHERE length is longer then 1
So I want to only show results where the length of a BLOB is greater then 1.
I was wondering if anyone could help
5
votes
3answers
162 views
Comparing list length with arrows
Inspired by Comparing list length
If I want to find the longest list in a list of lists, the simplest way is probably:
longestList :: [[a]] -> [a]
longestList = maximumBy (comparing length)
A ...
5
votes
1answer
351 views
std::string::length() vs. std::string::size() [closed]
Possible Duplicate:
std::string length() and size() member functions
I always retrieved the length of an std::string via thesize() member function. To be honest I never knew there was a ...
5
votes
2answers
428 views
What is max length for an C/C++ identifier on common (build) systems?
I don't remember the standard saying something of the max length for identifiers so in theory they can be long. In real life, those names could be limited by at least the compiler and linker ...
5
votes
6answers
931 views
Mathematica: get number of arguments passed to a function?
How do I get the number of arguments passed to a function, such as Plus[2,3,4,5] has 4 arguments passed to it. I was thinking it may involve the use of the function Length and getting the arguments ...
5
votes
4answers
3k views
Change paper size in the middle of a latex document?
Does anyone know how to change these length parameters in the middle of a latex document?
\paperwidth
\paperheight
I would like to define a page size for a single page (possibly two or three). I ...
5
votes
6answers
624 views
dot length in java - finding its definition
In which class is the length field defined in Java (e.g. for array length)?
Will I be able to see it defined say in Object class?
EDIT : Why was this field so designed(any thing related with security ...
5
votes
3answers
2k views
System.Array GetLength and Length
How do you use the Array.GetLength function in C#?
What is the difference between the Length property and the GetLength function?
5
votes
6answers
3k views
What to do with “The input line is too long” error message?
I am trying to use os.system() to call another program that takes an input and an output file. The command I use is ~250 characters due to the long folder names.
When I try to call the command, I'm ...
5
votes
8answers
967 views
Is there any difference between parameters in a URL and <form method=“get”>?
The question title says it all.
Now, I know a difference between parameters in a URL and a POST parameter: some browsers may misbehave if the URL is too long, so it is not a good idea to stuff ...
4
votes
2answers
103 views
How to determine the (printed) length of a std::string with tab characters expanded?
Given a C++ std::string variable which includes tab characters, is it possible to determine the length of that string as it would appear on the "screen"? i.e.:
std::string var = "\t\t\t";
std::cout ...
4
votes
4answers
121 views
how to count the number of characters entered and action on it?
Hi I am fairly basic in jQuery, and got stuck in a script:
//hide all radio buttons first
$('#q11_6_1').parent().hide();
$('#q11_6_2').parent().hide();
$('#q11_6_3').parent().hide();
...
4
votes
6answers
152 views
Simulating Length function to get a list's length
I'm trying to simulate the Length function in Mathematica v.8 to get the length of a list. Given this facts:
Empty list is represented as {}
l = Rest[l] assigns to l (which is a list) the list l ...
4
votes
2answers
104 views
Losing elements in python code while creating a dictionary from a list?
I have some headache with this python code.
print "length:", len(pub) # length: 420
pub_dict = dict((p.key, p) for p in pub)
print "dict:", len(pub_dict) # length: 163
If I understand ...
4
votes
1answer
450 views
Matplotlib quiver scale
I'm trying to plot some arrows using matploblib with the quiver function. But I want to choose the length of each arrow individually using an array.
...
4
votes
3answers
1k views
UTF-8 string's length in linux, C
As I understand UTF-8 string is a null-terminated string, with variable char length — 1-4 bytes. It can be represented as char(did I get this right?). I need to get it's char count to align a textual ...
4
votes
4answers
244 views
GZIP file Total length in C#
I have a zipped file having size of several GBs, I want to get the size of Unzipped contents but don't want to actually unzip the file in C#, What might be the Library I can use? When I right click on ...
4
votes
5answers
459 views
Generate all permutations of all lengths
How would you generate all the possible permutations of list b(1,6,8,3,9,5) including ones of different length? Example:
List a = [1,2,3]
generateperms(a)
1,2,3
3,1,2
3,2,1
1,3,2
2,1,3
2,3,1
2,3
1,2
...
4
votes
11answers
4k views
String length without using length() method in java
How can i find the string length without using the length() method in java
4
votes
6answers
1k views
Shorten array length once element is remove in Java
Note:
Following is my homework/assignment, feel free not to answer if you will.
I want to delete/remove an element from an String array(Set) basic, I'm not allowed to use Collections..etc.
Now I ...
4
votes
4answers
925 views
How to find the length of a linked list that is having cycles in it?
This was one of the interview questions asked. How to find the length of a linked list that is having cycle in it. I know how to calculate whether a linked list has a cycle or not using Hare and ...
4
votes
3answers
2k views
C# - Count string length and replace each character with another
How can I count the number of characters within a string and create another string with the same number of characters but replace all of them with a single character such as "*"? Thank you.
4
votes
8answers
4k views
Way to get number of digits in an int?
Is there a neater way for getting the length of an int as this?
int length = String.valueOf(1000).length();