An empty string has zero characters.

learn more… | top users | synonyms

0
votes
1answer
20 views

Preg_match Empty Strings

So, I have to read a text file and get certain fields like name*: xxxxx, and save the xxx in a new file.. I've been using Regex to get the xxxx and save them in the text file and its working well, the ...
1
vote
3answers
63 views

Ruby test for “\0” null?

I have some odd characters showing up in strings that are breaking a script. From what I can tell by put badstring to console they are "\0\0\0\0". I'd like to test for this so I can ignore them...but ...
13
votes
1answer
147 views

Changed behavior of string.Empty (or System.String::Empty) in .NET 4.5

Short version: The C# code typeof(string).GetField("Empty").SetValue(null, "Hello world!"); Console.WriteLine(string.Empty); when compiled and run, gives output "Hello world!" under .NET version ...
1
vote
1answer
25 views

MongoDB: how to select an empty-key subdocument?

Ahoy! I'm having a very funny issue with MongoDB and, possibly more in general, with JSON. Basically, I accidentally created some MongoDB documents whose subdocuments contain an empty key, e.g. (I ...
-4
votes
0answers
34 views

if empty($something) always throw true [closed]

I never get false empty, my HTML page is ok and the script was ok and sending mail just before I add this injection filters and null checks here's my code: function sanitize(&$array) { ...
0
votes
3answers
27 views

strange empty POST output php

I have this code: <?php if ( isset($_POST['username']) === true){ echo 'Username is set'; if ( $_POST['username'] == "" ){ echo '<br> Username is empty'; } else { ...
0
votes
2answers
28 views

Google Spreadsheet API via PHP

i want to read a google spreadsheet over google spreadsheet api via XML. I try different ways, e.g. <?php $data = ...
1
vote
3answers
41 views

Convenient way to drop empty strings from a collection

I am looking for a convenient way to drop list items with empty string as their value. I know I could check each string to see if it is empty before loading into the list. List<string> items = ...
0
votes
0answers
43 views

Empty Strings, Nulls, and Money types with SqlBulkCopy

I have some TAB delimited text files that I have to import to a SQL Server each month using an ASP.NET intranet page. I have been using the Generic Parser found here to import the files to DataTables ...
0
votes
3answers
58 views

How to check if a string is different string constant (such as '\n', '\t') with Python

How to check if a String equals to Empty, and to a different string constant (such as '\n', '\t', etc.) with Python? This is what I used: if not text or text == '\n' or text == '\t': ...
1
vote
0answers
45 views

MVC4 Json Null object handling

MVC Framework 4.0, some actions return HTML, and some are required to return Json. The below model is an example of the C# Object I'm returning using Json(myObject); public class resultModel { ...
1
vote
2answers
67 views

Why empty regex and empty capturing group regex return string length plus one results

How would you explain that empty regex and empty capturing group regex return string length plus one results? Code public static void main(String... args) { { System.out.format("Pattern ...
0
votes
0answers
14 views

$_POST and $_FILES still empty

$_POST and $_FILES still empty ( Ubuntu Server ) php.ini post_max_size = 300M max_input_time = 1500 upload_max_filesize = 300M html code: <html> <body> <form ...
0
votes
3answers
83 views

What is good if an empty string is truthy? [closed]

In Ruby, an empty string "" is truthy with respect to conditionals. And I see many people struggling with this fact. Ruby on Rails's blank? is one attempt to overcome this problem. On the other hand, ...
0
votes
1answer
19 views

regular expression with matching empty string

I am working on a django project to modify database options in the file settings.py.I want to use regular expression to do it. the options just like : 'PASSWORD':'123456', so I have write a ...
2
votes
4answers
38 views

stuck with empty and foreach

<form action="http:\\127.0.0.1\rechecking.php" method="post" enctype="multipart/form- data"><pre> Enter your first Name: <input type="text" name="fname" ...
-1
votes
1answer
28 views

Can SLR grammar have empty productions?

I've wrote following grammar: S->S ( S ) S S->e e stands for "empty string" So the language this grammar recognizes includes all strings with matching left and right parenthesis, like (), ...
0
votes
2answers
48 views

Checking if selectors are blank in jQuery

I am currently using a .js file with jQuery commands to find certain elements of a .xml file. I have been able to gather all the data I want easily, however am having a bit of difficulty with the ...
1
vote
2answers
101 views

python: xlrd/csv - empty cell treatment when xlrd/csv packages read objects into memory

Is there an option to change the default way the csv and xlrd packages handle empty cells? By default empty cells are assigned an empty string value = ''. This is problematic when one is working with ...
1
vote
2answers
48 views

Gsub a string only if string has value

Here's my code: <a href="<%= foo_path(foo) %>" class="<%= foo.roles.empty? ? foo.roles.gsub(',', ' ') : "" %>"> undefined method `empty?' for nil:NilClass I just want to output ...
1
vote
1answer
58 views

how to convert empty parameters to null when struts2 accept parameters

I am using struts2 data model to accept request parameters, if user does not type any value in input element, the corresponding property in model class is set to "", but I want it to be null, not "". ...
0
votes
3answers
93 views

Handling null / empty string

Before .NET 4 is out, we've been doing something like this to check for null / empty string : String s; if ((s + "").Trim().Length == 0) { //do something } While the above method works pretty ...
1
vote
1answer
90 views

Check empty input jquery - loop through array of elements

I've added a new property to input that I require to be filled: data-required (in spanish). I have 3 or 4 in my form, I loop them this way: $('#impFormularios').submit( function() { ...
1
vote
1answer
35 views

Searching in database from a form returning empty input

I want to do search in my database using some fields filled by a form but if some fields are left empty i don't want to include them which kind of query can help me in achieving this?? Currently i am ...
0
votes
1answer
189 views

PayPal IPN simulator testing produces an empty curl result. Works fine in live

I'm feel a bit out of my depth here. I have been having an issue with the sandbox IPN simulator since this PayPal overhaul a few days back. Basically the curl result usually says VERIFIED or INVALID ...
0
votes
2answers
126 views

Hibernate Select Case when empty string

I am having problems to implement a search in a PostgreSQl table. The table contains columns with empty strng values that causes an error. Some information from the column design: Data type: ...
2
votes
2answers
54 views

How to truly determine empty string?

I'm trying to prevent users from entering an empty user name. To determine spaces i use this code: if (strlen($nickname) > 0 && strlen(trim($nickname)) == 0) { die("Your username is ...
-2
votes
3answers
115 views

How to check a string is null in python [duplicate]

I am having a value cookie that is returned from a POST call using Python. I need to check whether the cookie value is empty. How can I do this in Python? P.S. cookie is the variable in which the ...
0
votes
3answers
528 views

check if json dictionary has empty strings as a value

what i am trying to achieve is to show and element only if an element's value within a JSON object is NOT equal to an empty string ''. For Example: say i have the following json object { 'id' : ...
6
votes
2answers
276 views

Is PChar('') guaranteed to be a pointer to #0 (not nil)?

I understand that in Delphi, an empty string (AnsiString or WideString) can be represented by a nil pointer, or by a pointer to an actual empty string. By experiment I've shown that in Delphi XE2 ...
1
vote
4answers
124 views

Why is this BufferedReader returning empty String instead of null?

I have a BufferedReader iterating through the lines of a CSV file; when it gets to the end of the file, it returns the following error: Exception in thread "main" java.lang.NumberFormatException: ...
1
vote
3answers
139 views

Why is my Java split method causing an empty line to print?

I am working on a short assignment from school and for some reason, two delimiters right next to each other is causing an empty line to print. I would understand this if there was a space between them ...
0
votes
1answer
42 views

Performance efficient way of checking if a controls text is empty

Which among these 4 ways is the most efficient way for checking if a control's text is empty performance wise? someObject.Text != "" someObject.Text != string.Empty ...
-2
votes
2answers
117 views

why does (“” + null = “”) in C# but (“” + null = “null”) in Java? [closed]

The part I don't understand is the point of having the String representation of null be the String "null". What's the rationale behind that functionality in Java? Is there a deeper answer than ...
1
vote
1answer
56 views

jQuery: Can I void !=0 for checking length?

I'm curious if the code var $d = $('#person_data[document_type]'); if ($d.length != 0) { if ($d.val().length != 0 ) {...} } that was taken from SO jQuery: checking if the value of a field is ...
-1
votes
2answers
66 views

Simplify empty() + echo with different kind of variables [closed]

I'm trying to get my code error and notice free. Therefore I should check every variable I want to echo. The specific case I am interested in, is a "new" page that can also act as an "edit". If ...
1
vote
2answers
129 views

Converting empty string to integer

Currently, my application is showing this error message: "The value '' cannot be converted to a number." Which doesn't surprise me. The variable was just added, so the variable is an empty string ...
0
votes
5answers
215 views

Perl: Erase empty lines and save in a new file

I am trying to write a script which will count and erase empty lines from a file and save the changes in a new file: if (@ARGV != 2) { print "Usage: $0 infile outfile\n"; exit; } $infile = ...
3
votes
2answers
229 views

Checking if a key exists and its value is not an empty string in a Python dictionary

Is there a clear best practice for assigning a variable from a key/value pair in a Python dictionary: If the key is present If the key's value is not an empty string And otherwise assigning a ...
0
votes
0answers
75 views

C# WPF alphanumeric cells return empty

I want to update some data in MySql from a DataGrid when I edit it's rows. The problem is that cells containing both alphabet and numeric characters return empty values when I get them. I use the ...
0
votes
6answers
242 views

How to stop php from executing the script if form POST is empty?

I have two input fields and whenever I open my page, it displays errors since at the start user has not entered any input to any of the field (& the errors are displayed because the user input is ...
2
votes
3answers
70 views

Ruby - why this construction return nil?

I have this simple construction: <% if !@user.address.empty? && !@user.zip.empty? %> <%= @user.address+', '+@user.zip%> <% end %> If are address and zip filled out, ...
0
votes
3answers
44 views

Can a !empty input be part of a function - PHP

What I'm trying to achieve is, if there is an non empty input + another input will show up. This is how the input looks like. <input type="file" name="image[]" /> What I'm trying to do is ...
0
votes
1answer
48 views

Loading a message if an array is empty

I have the following code but I am unsure why my array is still empty as my thinking is if the foreach is empty it should load the else statement with the 'No Open Homes': $openHomeTimes = array(); ...
1
vote
2answers
63 views

Regex: combine statement with empty string

What I am trying to do: this regex should have to force the first character to be a letter, after that character, letters, a whitespaces or '-' can be inserted. This first part works just fine: ...
1
vote
3answers
373 views

Convert from string to int in Excel for empty or blank

As output I have for Range("H" & temp).Cells : 234 0 (Empty) 2 I want to convert it into long or int, because it's a text value. So I did Range("H" & temp).Cells = CInt(Range("H" & ...
1
vote
0answers
225 views

Java xml self-closing tags

My Java program looks like: public static void main(String[] args) { DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); DocumentBuilder db; try { db = ...
-1
votes
1answer
228 views

Java - error, empty String in treeSet

I have been going over this thing all day, line by line and I cannot figure out why I'm getting an empty String error. The program reads a text file and the output from the first part is correct, ...
1
vote
2answers
178 views

Python regex: How to match an empty string?

I need to match the following sets of input: foo_abc_bar foo_bar and get "abc" or an empty string as the resuly. So this is the regular expression I wrote: r'foo_(abc|)[_|]bar' But for some ...
1
vote
3answers
373 views

objC checking empty string, isEqualToString:@“” vs length

I have a string NSString hi; and I don't know what values will get initialized to it. Could be nil, could be empty string, could be anything. Are there any advantages to using if (![hi length]) ...

1 2 3 4