NUL is the abbreviation for the null character in several character sets

learn more… | top users | synonyms

0
votes
2answers
183 views

how can i change my computer volume using a batch file?

I am making a batch alarm but i need a way to turn the sound up automatically so I dont have to. current code for alarm (if you have any other improvements feel free to suggest them). @ECHO OFF ...
1
vote
3answers
73 views

How do I omit lines that contain Unicode NULL (U+0000)?

I am reading a file and am wondering how to skip lines that have Unicode NULL, U+0000? I have tried everything below, but none works: if($line) chomp($line) $line =~ s/\s*$//g;
0
votes
1answer
49 views

How to get a python SocketServer to received until string is terminated with NUL

In Python, how would I go about writing a TCP SocketServer receiving a string until a NUL character (\0) is found? After the string is received fully, I need the socket to continue to be able to ...
0
votes
0answers
40 views

.Net : winforms DataBindings and saving null values on an update

I have an issue where I am placing a Binding Source on a form. The binding source is from a EF code first model. My issue is that I can't seem to do an update of a value if it is a null. The ...
-2
votes
3answers
1k views

Value cannot be null. Parameter name: String

Please take a look at the following code. its in the handler.asxh. public void ProcessRequest(HttpContext context) { context.Response.ContentType = "application/json"; new ...
0
votes
2answers
132 views

Unwanted nul characters preceding bytes from TCP socket read using DataInputStream

I'm writing an Android app that involves connecting to a TCP server (that I also wrote) and sending/receiving text from it. Right now I have a bug in my final read (client-side). When I use the ...
1
vote
2answers
54 views

Conitnue to read through NUL

I got a .dat file, encoded in ANSI which contains NUL caracters (not only !). I wan't to read it into a str object iot cut something in the whole str obtained. But file.read() stops when the first ...
4
votes
6answers
285 views

returning NULL but getting error C2440: 'return' : cannot convert from 'int' to 'const &'

I've got a method that follows class BuildOrderStrategy { public: virtual const Urgency& getUrgency() = 0; ... } which implementation follows const Urgency& ...
0
votes
2answers
174 views

How to modify an executable without corrupting it?

Is there a specific null char or a sequence of bytes which would not corrupt the executable if added in FRONT of the file? I tried adding NUL (00 hex) but it corrupts the executable every time. Is ...
0
votes
0answers
213 views

factory girl - undefined method `downcase' for nil:NilClass

Hello I am getting the following error when trying to validate a factory: undefined method `downcase' for nil:NilClass factory file: FactoryGirl.define do factory :coupon do code "MyString" ...
1
vote
1answer
46 views

Using >nul in a variable

Does anyone know how to stop >nul being ignored when set in a variable, or is this not possible? I have a feeling that it's one of those things that will only work once all variables have been ...
0
votes
1answer
217 views

DOS Return ErrorLevel Without Running Program

I'm running Powershell commands thru a DOS prompt and I'd like to check if Powershell is installed first before I start running my commands. I'd like the script to exit if powershell doesn't exist ...
2
votes
1answer
156 views

How can I write to the NUL device under Windows from node.js?

This is bugging me for several days now. I know about the standard stream redirection to the NUL device, but this isn't the case. node.js uses CreateFileW under its fs native/libuv bindings. ...
1
vote
1answer
1k views

In SQL Server, replace a Char(0), the null character, embedded in a string with its hex code

What is a construct in SQL Server T-SQL that will replace a Char(0), the null character, embedded in a string with its hex code? I.e. REPLACE('t'+Char(0)+'t', Char(0), ...
14
votes
2answers
192 views

C# Generics: If T is a return type, can it also be void? How can I combine these interfaces together?

I have the following interface that returns the generic parameter of type T using a callback... public interface IDoWork<T> { T DoWork(); } however I also have the following interface as ...
-1
votes
3answers
539 views

NUL undeclared- first use in this function

From the web I understand that C contains NUL keyword. But while compiling I get an error NUL undeclared first use in this function' My code fragment: for (;;) { char ch = (*pzDest = ...
0
votes
1answer
399 views

How to 'cut' on null?

Unix 'file' command has a -0 option to output a null character after a filename. This is supposedly good for using with 'cut'. From 'man cut': -0, --print0 Output a null character ‘\0’ ...
3
votes
2answers
510 views

Python - how to read file with NUL delimited lines?

I usually use the following Python code to read lines from a file : f = open('./my.csv', 'r') for line in f: print line But how about if the file is line delimited by "\0" (not "\n") ? Is ...
3
votes
2answers
679 views

Could sed or awk use NUL character as record separator?

I have a NUL delimited output coming from the following command : some commands | grep -i -c -w -Z 'some regex' The output consists of records of the format : [file name]\0[pattern count]\0 I ...
0
votes
1answer
187 views

Redirecting keyboard input+text+error text to nul with 2>&1 in CMD

I need to redirect keyboard input + text + error text in CMD to nul with maximum 2 expressions. Something like *command* >nul 2>&1. An alternative is >nul 1>nul 2>nul but as I ...
0
votes
0answers
203 views

unwanted “NUL” characters string after reading bytes of a mjpg TCP stream

I'm trying to record a jpeg image sent by an Ethernet camera in a mjpg stream. The images I obtain with my Borland C++ application (VSPCIP) are sometimes "corrupted" : I have the example of a ...
1
vote
0answers
81 views

IBOutlet will not instantiate

Alright, I have a weird one here. I have created a VERY simple UIViewController that has 1 big UITextView on it. In my .h file I declare a property like this: @property (nonatomic, strong) ...
0
votes
1answer
448 views

ERROR: auto-makefile - NUL character / missing separator

OS: Mac OS X 10.7 (Lion) Program(IDE): Eclipse CDT I am currently learning advanced C++ using the eclipse development environment. (I have my reasons.) The problem at hand that I ...
1
vote
1answer
152 views

read() stops after NUL character

I'm downloading files over HTTPS, I request the files through urllib2.Request and they come back as a socket._fileobject. I'd ideally like to stream this to file to avoid loading it into memory but ...
19
votes
4answers
485 views

Is '\0' guaranteed to be 0?

I wrote this function in C, which is meant to iterate through a string to the next non-white-space character: char * iterate_through_whitespace(unsigned char * i){ while(*i && *(i++) ...
0
votes
2answers
160 views

wchar_t NUL in managed/unmanaged C++

I need to use this (unmanaged) C++ library. One of the methods has a wchar_t* as a parameter. Tried using it in C#, but all my attempts resulted in an error code 'invalid argument'. I wrote a managed ...
2
votes
2answers
329 views

psql --(record|field)-separator NUL

Is there some way to make psql separate the fields and records by \0, aka NUL? It's the only way to be able to pass arbitrary data to Bash scripts. Based on Matthew Wood's answer, I would expect this ...
11
votes
5answers
31k views

Java string replace and the NUL (NULL, ASCII 0) character?

Testing out someone elses code, I noticed a few JSP pages printing funky non-ASCII characters. Taking a dip into the source I found this tidbit: // remove any periods from first name e.g. Mr. John ...