Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

47
votes
7answers
15k views

Why does Oracle 9i treat an empty string as NULL?

I know that it does consider ' ' as NULL, but that doesn't do much to tell me why this is the case. As I understand the SQL specifications, ' ' is not the same as NULL -- one is a valid datum, and ...
22
votes
2answers
775 views

string.Empty vs null.Which one do you use?

Recently a colleague at work told me not to use string.Empty when setting a string variable but use null as it pollutes the stack? He says don't do string myString=string.Empty; but do string ...
11
votes
3answers
3k views

Set value to null in WPF binding

please take a look at the following line <TextBox Text="{Binding Price}"/> This Price property from above is a Decimal? (Nullable decimal). I want that if user deletes the content of the ...
11
votes
7answers
7k views

Comparing a string with the empty string (Java)

I have a question about comparing a string with the empty string in Java. Is there a difference, if I compare a string with the empty string with == or equals? For example: String s1 = "hi"; if (s1 ...
9
votes
11answers
7k views

Should I set the initial java String values from null to “”?

Often I have a class as such: public class Foo { private String field1; private String field2; // etc etc etc } This makes the initial values of field1 and field2 equal to null. Would it be ...
7
votes
11answers
382 views

Difference between String.isEmpty() and String.equals(“”)

I created a "Color Chooser" with three textboxes where the user defines rgb values. To check if values entered are correct (only numbers between 0-255) I'm using the following: public Color ...
5
votes
3answers
258 views

bash test for empty string with X“”

I know I can test for an empty string in bash with -z like so: if [[ -z $myvar ]]; then do_stuff; fi but I see a lot of code written like: if [[ X"" = X"$myvar" ]]; then do_stuff; fi Is that ...
5
votes
3answers
281 views

In D, how to pass an empty string? (to gtkD)

Using D1 with phobos I have a text entry field, instance of gtk.Entry.Entry, calling setText("") raises a run time error Gtk-CRITICAL **: gtk_entry_set_text: assertion `text != NULL' failed Why? ...
5
votes
3answers
4k views

Getting rid of null/empty string values in a C# array

I have a program where an array gets its data using string.Split(char[] delimiter). (using ';' as delimiter.) Some of the values, though, are null. I.e. the string has parts where there is no data so ...
4
votes
3answers
3k views

Regex empty string or email

I found a lot of Regex email validation in SO but I did not find any that will accept an empty string. Is this possible through Regex only? Accepting either empty string or email only? I want to ...
4
votes
4answers
428 views

Identify empty string in Perl

There is probably an easy solution to this, but I can't figure it out. I am looking to: take a CSV file into an array loop through the array and split fields into variables if the array field is ...
4
votes
1answer
125 views

Wasn't there a switch to toggle Oracles empty varchar2 - null behavior?

As everybody working with Oracle knows, it an empty Varchar2 will result in a NULL value when put into a Varchar2 column. I (and a coworker as well) thought we had read about a parameter that could ...
4
votes
4answers
296 views

How to convert “string” to “*s*t*r*i*n*g*”

I need to convert a string like "string" to "*s*t*r*i*n*g*" What's the regex pattern? Language is Java.
3
votes
1answer
106 views

In clojure why does splitting a string from an empty file return 1 element?

Consider the following: => (even? (count [])) true so far so good. Now consider (assume my-file is empty): (odd? (count (str/split (slurp my-file) #"\|"))) true err ... why is the vector ...
3
votes
6answers
787 views

how to remove comma white space during explode and replace?

$data = "google,facebook,youtube,twitter,bing"; $exp = explode(",",$data); $rep = str_replace("facebook",$exp); $final = implode(",",$rep); echo $final output// google,,youtube,twitter,bing How ...
3
votes
3answers
297 views

Do you have to check for null & length or is there a shorter way to verify a non-empty string?

I set the value of a hidden field #thimble on page load using server-side values. Then in JavaScript I want to act on that value only if it has been populated with some non-empty string. Is this the ...
3
votes
2answers
177 views

strange behavior with 'IN' clause works

i found this site: here its very well described why it works and why not. but my question is a little different. select 'true' from dual where 'test' not in ('test2',''); why does this query not ...
3
votes
3answers
1k views

Regular expression which matches a pattern, or is an empty string

I have the following Regular Expression which matches an email address format: ^[\w\.\-]+@([\w\-]+\.)+[a-zA-Z]+$ This is used for validation with a form using javascript. However, this is an ...
3
votes
5answers
1k views

SQL Server 2008 - Default column value - should i use null or empty string?

For some time i'm debating if i should leave columns which i don't know if data will be passed in and set the value to empty string ('') or just allow null. i would like to hear what is the ...
3
votes
6answers
729 views

String.IsNullOrEmpty(myString) Vs myString != null

Which is better to use ? string myString = ""; String.IsNullOrEmpty(myString); or if(myString.Length > 0 || myString != null) EDIT: or if (m.Length > 0 | m != null)** Former is ...
3
votes
4answers
979 views

Is there an option to make Entity Framework revert empty strings to null?

I am using an ADO.NET Entity-Framework ObjectContext to access my data store. I want the if values are set with empty strings, they should automatically become null.
3
votes
6answers
2k views

Converting an empty string into nil in Ruby

I have a string called word and a function called infinitive such that word.infinitive would return another string on some occasions and an empty string otherwise I am trying to find an elegant ruby ...
2
votes
5answers
723 views

CSS Validation: “Parse Error [empty string]”

I have been trying to validate my CSS, and the following lines continually return the error Parse Error [empty string] .content { width:80%; text-align:center; margin-left:auto; margin-right:auto; ...
2
votes
1answer
143 views

sql server thinks empty string equals to some characters

if N'ab' = N'aޢb' select 'hit' this will print 'hit'. i dont know why did sql server thinks these two string are equal. it seems that '�', or 'ޢ' or just empty string, are equal for sql server.
2
votes
2answers
147 views

Asign empty string to a property with a currently value of nothing

In my EF4 EntityModel I have an entity named USERS. USERS have the common UserName and Password string fields. If I do something like this Dim u as new USERS U.UserName = String.Empty Then ...
2
votes
2answers
208 views

Perl - Is it good practice to use the empty string as false?

Is it safe/good practice in Perl to use an empty string as false in boolean comparisons? ex: my $s = ''; if($s) { print 'true'; } else { print 'false'; } or would the length function be a ...
2
votes
1answer
171 views

StringProperty, None vs. Empty String

class Person(db.Model): first_name=db.StringProperty() middle_name=db.StringProperty() last_name=db.StringProperty() p1=Person(first_name='john', last_name='smith') ...
2
votes
3answers
650 views

Why doesn't COM use a static empty BSTR?

When allocating an empty BSTR, either by SysAllocString(L"") or by SysAllocStringLen(str, 0) you always get a new BSTR (at least by the test I made). BSTRs aren't typically shared (like Java/.NET ...
2
votes
2answers
2k views

JSON empty string

why does the JSON.stringify-Function converts a string.Empty ("") to a "null"-String? The problem, why i'm not using: JSON.parse(json, function(key, value) { if (typeof value === 'string') { if ...
2
votes
4answers
1k views

Is empty string valid XML?

Is '' a valid piece of XML? Can '' insert into oracle xblob column or XML column from MSSQL?
1
vote
0answers
36 views

Correct Regex to Prevent Java Scanner From Returning a Zero Length String

I am trying to read in the individual numbers from a file with multiple lines of numbers separated by commas. The java code I am doing this with is: try { Scanner fileScanner = new ...
1
vote
3answers
113 views

In List<string>, how to use the Contains() method and check if value is empty

I have a List and some saved values taken from a gridview. What I need is to use a few if statements in order to check if one of these values in the list are empty. A simple for loop going through ...
1
vote
2answers
76 views

Proper way to empty a C-String

I've been working on a project in C that requires me to mess around with strings a lot. Normally, I do program in C++, so this is a bit different than just saying string.empty(). I'm wondering what ...
1
vote
1answer
95 views

DetailsView converts TextBoxes empty string to null

I have a basic ASP.NET Web Forms application. I give the user the possibility to create the records by using a Web Form and to update them by using a DetailsView. The web form stores the empty ...
1
vote
1answer
32 views

How to update a column based on comparison result on another column

I can easily locate the rows I want with these sql statements: SELECT COUNT(*) FROM `individuals` WHERE `company_zip` != ''; SELECT COUNT( * ) FROM `individuals` WHERE length( `company_zip` ) > 0; ...
1
vote
3answers
118 views

php - check an empty string with === '' does not work

When I test to see if the textarea in my form is empty to do a redirect so it doesn't submit it in php, it doesn't work. The textarea is named $_POST['message'], I know the variable exists because if ...
1
vote
2answers
111 views

Converting empty string to nil via split()

I've got a string that I'm splitting, as follows: foo, bar, baz, etc = str.split(',') If, for example, str is equal to "one,two,,four", then baz ends up equalling "" (an empty string). Is there ...
1
vote
2answers
108 views

Transform empty string to null in data bound textbox

I have a textbox in a formview that gets its data from a linqdatasource which is used to enter a date: <SP:TextBox ID = "StartDate" Type = "Date" Runat = "server" ...
1
vote
1answer
99 views

A flex script that matches empty inputs?

Is it possible to write a lex or flex script containing a set of rules where the maximal-munch matching step will always match a length-zero string? I ask this because the mathematical definition of ...
1
vote
5answers
56 views

defining an empty variable?

suppose $test = ''; if(empty($test)){ $test = "not found";} echo $test; the above case the answer will be "not found" but below one even though the $test variable is empty but result give ...
1
vote
8answers
479 views

PHP: a short cut for isset and !empty?

I wonder if there any better ideas to solve the problem below, I have a form with a number of input fields, such as, <input name="pg_title" type="text" value="" /> <input name="pg_subtitle" ...
1
vote
3answers
250 views

Allow empty parameter in MVC route

I've got a route that should only ever called by an automated process: routes.MapRoute( "Automated file processing", "Process/{change}/{file}/{type}", new { controller = "C", action = "Process" ...
1
vote
4answers
677 views

JQuery Empty A Textfield When I click in it

How do I empty a textfield (html form) if I click in it to write something. Pseudo Code: On click #searchform Erase String in #searchform
1
vote
3answers
177 views

return empty string from preg_split

Right now i'm trying to get this: Array ( [0] => hello [1] => [2] => goodbye ) Where index 1 is the empty string. $toBeSplit= 'hello,,goodbye'; $textSplitted = ...
1
vote
1answer
361 views

HttpWebRequest doesn't work in a web page

I have always used this code to donwload the html source from a web page: private string GetHtml(string url) { HttpWebRequest web = (HttpWebRequest)WebRequest.Create(url); web.Method = "GET"; ...
0
votes
0answers
6 views

MS Text Driver Ignore Last Empty Line

I can successfully read text files with MS Text Driver (or MS Access Text Driver). However, all files contain an empty line at last. And the Text Driver finally reads a row with all NULL values. ...
0
votes
1answer
42 views

Minimum height for div or span with empty element

When I enclose within span or div a string that happens to be an empty string or includes only white spaces, that part does not have any height, and when that span or div is further embedded into ...
0
votes
5answers
73 views

if a variable in my while loop is empty, echo a 0 instead of nothing

I have the following loop: while($row = mysql_fetch_assoc($result)) { <some code> if ($user) echo '<li><a ...
0
votes
3answers
32 views

Why is empty string transformed to “(null)”?

I have following code sample: double t_values[FFT_SIZE]; AnsiString prefix; double multiplier; AutoScaleData(t_values, FFT_SIZE, prefix, multiplier); AnsiString str; str.printf("Voltage [%sV]", ...
0
votes
1answer
39 views

Sql Query Working in Management Studio but not in program

Consider the following query. SELECT LP.project_id, LP.title, LP.type, LU.NAME, LP.reference, LP.status, LP.correspondence, LP.source, LP.deadline, LP.mstat, LP.num_pages, LP.done, ...

1 2