Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

37
votes
3answers
28k views

What is the string length of a Guid?

I want to create a varchar folumn in SQL should contain N'guid' while guid is a generated Guid by .net (Guid.NewGuid). What is the length of the varchar I should expect from a Guid? is it a static ...
29
votes
7answers
63k views

String length and jQuery

How do you get the length of a string in jQuery?
23
votes
3answers
817 views

Does Java's toLowerCase() preserve original string length?

Assume two Java String objects: String str = "<my string>"; String strLower = str.toLowerCase(); Is it then true that for every value of <my string> the expression str.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!
8
votes
4answers
267 views

How can I estimate the disk size of a string with JavaScript?

I need to try to estimate the DISK size of a text string (which could be raw text or a Base64 encoded string for an image/audio/etc) in JavaScript. I'm not sure how to estimate this. The only thing ...
7
votes
8answers
638 views

strlen() function

I have read that use of strlen is more expensive than such testing like this: We have a string x 100 characters long. I think that for (int i = 0; i < strlen(x); i++) is more expensive than ...
6
votes
1answer
112 views

Bug in LINQ to SQL with empty strings on database

I have been using LINQ to SQL for years now, but this is the first time I have seen this behavior. I have a DB table with a few columns (varchar(15)) that may contain empty strings (''). I verify ...
6
votes
5answers
764 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
2answers
12k views

Calculate the display width of a string in Java

How to calculate the length (in pixels) of a string in Java? Preferable without using Swing. EDIT: I would like to draw the string using the drawString() in Java2D and use the length for word ...
3
votes
1answer
43 views

Functions that are not replication safe

One of my colleague says Length() function in mysql is not replication safe. This function is used in update statement. Is this true? What else should we take in to consideration when writing a query ...
3
votes
5answers
115 views

Expression beeing assigned must be constant - it is

Is there a way to use something like this: private const int MaxTextLength = "Text i want to use".Length; Imho it would be better readable and error prone then using something like: private const ...
3
votes
3answers
910 views

PHP: whats the total length of a post global variable?

I was wondering if anybody knows the total length that a post global could be. e.g: $_POST['formInput'] = "hello world, how long can i be?"; I am creating a site where someone will enter an unknown ...
2
votes
2answers
39 views

Constantly reading a String from JTextField

I've got a DocumentListener to look for any changes in the JTextField: public class MyDocumentListener implements DocumentListener { static String text; public void ...
2
votes
1answer
67 views

How to trim String based on Size php [closed]

Possible Duplicate: PHP - cut a string after X characters Is there a way to cut or trim a String based on a Specific Size. Let say we have "Lorem Ipsum dolor" and we want to cut that ...
2
votes
1answer
131 views

(Asp.Net MVC3) How to Define StringLength for ASCII and Unicode?

I have following define in model [Required] [StringLength(100, MinimumLength = 10)] [DataType(DataType.Text)] [Display(Name = "XXX")] public string XXX{ get; ...
2
votes
2answers
37 views

php improper comparison behavior

$string = '540'; if (strlen ($string >= 34)){ print_r((substr($string, 0, 30) . "...")); } else { print_r(($string)); } If $string is longer than 34 characters it should be appended with ...
2
votes
1answer
88 views

If len(list) is not divisible by 3, then exclude last item in a function . Python 2.7.1

if you have a string string='abcdefg' and you wanted to check if the length of the string is divisible by 3 len(string) what command would you use?
2
votes
2answers
57 views

Sum String-Length of two different nodes with Xpath - Sum two nodes string-length

Hi guys The following xpath does not seem to work. //FullName[sum(string-length(FirstName) | string-length(LastName))>= 30] Error: Expression must evaluate to a node-set. XML snippet ...
2
votes
1answer
131 views

Javascript String Length Differs From PHP mb_strlen (on textarea row, line breaks)

I am using JavaScript as well as PHP to calculate string lengths. Everything is OK except when I calculate a textarea string length coming from Chrome or Firefox versus Internet Explorer. New textarea ...
2
votes
3answers
57 views

Is there a PHP function for cutting a string into sections without cutting words?

I'm trying to find a php function that will take a string and a length number, and at that length in the string will cut it, but not if its in the middle of a word, only if its a space, and will check ...
2
votes
2answers
98 views

How to count the number of columns required by a japanese-english mixed string?

My string contains a mix of japanese (double width) and english (single width) characters: string str = "女性love"; In C#, my method has to count japanese characters as two columns and english ...
2
votes
2answers
194 views

Zend_Validate_StringLength encoding?

In Zend Framework, Zend_Validate_StringLength has an encoding property that can be used to convert between different character sets (it uses iconv_set_encoding on the string). Why is this part of the ...
2
votes
3answers
128 views

can't save strlen return value

I am using c string library's strlen function.I passed a NULL string to it and found mysterious result.I know I am not supposed to pass NULL string but I need an explanation for it.The code looks ...
2
votes
4answers
171 views

JavaScript & string length: why is this simple function slow as hell?

i'm implementing a charcounter in the UI, so a user can see how many characters are left for input. To count, i use this simple function: function typerCount(source, layerID) { outPanel = ...
2
votes
1answer
101 views

How big of a buffer should I create for the longest possible user or group name on Linux?

What is the maximum number of characters that a user name or group name may be on Linux? I need to allocate a buffer and would like to know how much space I need to allocate to guarantee it is large ...
2
votes
4answers
146 views

predict len of an sprintf( )'ed line?

Is there a function around somewhere that I can use to predict the space that sprintf( ) will need? IOW, can I call a function size_t predict_space( "%s\n", some_string ) that will return the length ...
1
vote
2answers
68 views

Convert CGSize to CGFloat and use that to size a RoundRectButton

I'm trying to find the physical pixel size of a string of text. I then want to use this size to set the length of a roundRectButton. The method I'm using to get the length however returns a CGSize. ...
1
vote
3answers
240 views

(Razor) String length in Html.Helper?

This is a very simple question. I have a Html.helper: @Html.DisplayFor(modelItem => item.Text) How to I cut down the string from item.Text to a specific length? I wish you could do a SubString ...
1
vote
5answers
222 views

C# fixed string length - compile time checking

I would like to declare a C# value type that only allows strings of a particular length. Said length should be validated at compile time. This is doable in Delphi as: type TString10 = string[10]; ...
1
vote
1answer
27 views

Editing a regex that isn't mine, not sure how to adjust it for needs

I have a regex that was written for me for passwords: ~^[a-z0-9!@#\$%\^&\*\(\)]{8,16}$~i It's supposed to match strings of alphanumerics and symbols of 8-16 characters. Now I need to remove ...
1
vote
3answers
246 views

Python string length recursion

I'm blanking out trying to write a simple function to count the string length recursively. I can do sums, fibonacci, and factorial easy but I'm trying to create the simplest fucntion with only one ...
1
vote
2answers
153 views

Not able to store large string in db in RoR 3

I'm only allow to store around 250 characters in db column. When I try to add large string it automatically omit the extra character. The type I used in scaffold is string. How can I store large ...
1
vote
1answer
204 views

Length checking in VBA with null

I have some code that is meant to check the length of the values in the text boxes, and if any of the boxes has no content the length of the string is 0 (or null). Here is the code: If ...
1
vote
4answers
164 views

How to take string length of a String array?

I have declared a string array String s; I tried finding the length of the string by giving strlen(s) but it didnt work . How to get the length of the string ?
1
vote
2answers
116 views

How to count string length of a domain list and group them by length?

I have a list of domain names, for example: domain1.com domain2.com domainxxx2.com dom.com from that list I want to get: length 7 [2] length 10 [1] length 3 [1] I know how to split the tld and ...
1
vote
1answer
182 views

Is mb_strlen a suitable replacement for iconv_strlen

That is, if I'm coding something entirely in PHP4? Or perhaps I should use a custom function or class/extension instead to count the number of characters in a multibyte string? Only difference I can ...
0
votes
1answer
35 views

Maximum length of string which can be returned from stored proc in SQL Server 2008 to .net apps

I am returning a static string from a stored procedure (in SQL Server 2008) as below: select 'abcdefgh.........xyz' If the static string length is exceeding more than some limit (eg:8kb) then only ...
0
votes
2answers
84 views

XPath query to return the element with the max length in value

Given a list of elements containing text: <root> <element>text text text ...</element> <element>text text text ...</element> <root> I'm trying to write an ...
0
votes
2answers
211 views

Measure string size in Bytes in php

I am doing a real estate feed for a portal and it is telling me the max length of a string should be 20,000 bytes (20kb), but I have never run across this before. How can I measure byte size of a ...
0
votes
0answers
44 views

How to represent an image as length of Gif compressed file?

I need to measure visual complexity of some images. For quantification of visual complexity Donderi has suggested the use of compression techniques such as Gif. Donderi argues that when a picture is ...
0
votes
3answers
235 views

Python: Regex and String Length in byte

I am writing a program in python and have some question (I am 100% new to python): import re rawData = '7I+8I-7I-9I-8I-' print len(rawData) rawData = re.sub("[0-9]I\+","",rawData) rawData = ...
0
votes
2answers
150 views

Filechannel position and string length

In Java chars are 2 bytes long, But when I write a string to a file using a bytebuffer the filechannel position increments by the number of chars. I read that the Filechannel.position() method returns ...
0
votes
1answer
109 views

Length Check In Pascal

I get the error Error: Operator is not overloaded on line 7. Do I have to do a another repeat and can't use the and operator? Function GetValidPlayerName : String; Var PlayerName : String; ...
0
votes
4answers
1k views

Timestamp string length

If I did this // Default implementation of UNIX time of the current UTC time TimeSpan ts = DateTime.UtcNow - new DateTime(1970, 1, 1, 0, 0, 0, 0); string myResult = ""; myResult = ...
0
votes
3answers
309 views

PHP function - custom string length function

In php what is a function to only display strings that have a length greater than 50 characters, truncate it to not display more than 130 characters and limit it to one result? so for example say i ...
0
votes
1answer
161 views

How can I display a string which excess 254 chars in Crystal Reports 8.5?

hi How can I display a string which excess 254 chars in my report created by crystal reports 8.5? My application that shows the report ia a vb6.0 application. Thank you
0
votes
5answers
1k views

Display only 10 characters of a long string?

How do I get a long text string (like a querystring) to display a maximum of 10 characters, using JQuery? Sorry guys I'm a novice at JavaScript & JQuery :S Any help would be greatly appreciated.
0
votes
2answers
114 views

Problem setting a computed-column

I am trying to set this col but I get an error: FirstName + (CASE WHEN LEN(FirstName + LastName) > 0 THEN ' ' ELSE '') + LastName