Click here to Skip to main content
Licence CPOL
First Posted 21 Feb 2008
Views 23,883
Bookmarked 12 times

Testing for Empty String

By | 21 Feb 2008 | Article
A brief comparison of techniques of testing for empty strings

Background

Every once in a while, someone will post a snippet with code such as...

if ( somestring == "" )

... and in many cases someone else will respond, "Always use if ( somestring.Length == 0 ), it's more efficient."

... or maybe someone will respond, "Always use if ( somestring == System.String.Empty ), it's more efficient."

And neither will back up his claim.

Here are some numbers; performing each test against a provided string (UInt32.MaxValue times) yields:

C:\>StrTest ""
00:01:09.3764731 // if ( providedstring == "" )
00:01:10.3869118 // if ( providedstring == localstaticemptystring )
00:01:10.1249723 // if ( providedstring == System.String.Empty )
00:00:38.1334581 // if ( providedstring.Length == 0 )

C:\>StrTest "abc"
00:01:36.3041617 // if ( providedstring == "" )
00:01:36.6285272 // if ( providedstring == localstaticemptystring )
00:01:35.9541459 // if ( providedstring == System.String.Empty )
00:00:31.6860051 // if ( providedstring.Length == 0 )

The difference between comparing against a literal empty string and a static empty string is negligible. And note that somehow when the provided string isn't empty, those tests take even longer!

Testing the Length of the string is the clear winner here, though it's not as Earth-shattering as some might have you believe.

History

  • 2008-02-21 First submitted

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

PIEBALDconsult

Software Developer (Senior)

United States United States

Member

BSCS 1992 Wentworth Institute of Technology
 
Originally from the Boston (MA) area. Lived in SoCal for a while. Now in the Phoenix (AZ) area.
 
OpenVMS enthusiast, ISO 8601 evangelist, photographer, opinionated SOB
 
---------------
 
"Typing is no substitute for thinking." -- R.W. Hamming
 
"I find it appalling that you can become a programmer with less training than it takes to become a plumber." -- Bjarne Stroustrup
 
ZagNut’s Law: Arrogance is inversely proportional to ability.
 
"Well blow me sideways with a plastic marionette. I've just learned something new - and if I could award you a 100 for that post I would. Way to go you keyboard lovegod you." -- Pete O'Hanlon
 
"linq'ish" sounds like "inept" in German -- Andreas Gieriet
 

"Things would be different if I ran the zoo." -- Dr. Seuss
 
"Wrong is evil, and it must be defeated." – Jeff Ello
 
"A good designer must rely on experience, on precise, logical thinking, and on pedantic exactness." -- Nigel Shaw
 

"Omit needless local variables." -- Strunk... had he taught programming
 
"DON'T BE LIBERAL IN WHAT YOU ACCEPT!"
 
"Software Engineers don't have Trophy Wives; they have Presentation Layers."
 
"We learn more from our mistakes than we do from getting it right the first time."
 
"I'm an old dog and I like old tricks."
 
"Sometimes the envelope pushes back and sometimes you get a really nasty paper cut."
 
"A method shall have one and only one return statement."
 
My first rule of debugging: "If you get a different error message, you're making progress."
 
My golden rule of database management: "Do not unto others' databases as you would not have done unto yours."
 
My general rule of software development: "Design should be top-down, but implementation should be bottom-up."
 
"Today's heresy is tomorrow's dogma."
or
"Today's dogma is yesterday's heresy."
 
"The registry is evil."
 
"Every tool is a hammer."

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralHmm PinmemberZeroDegrez5:48 22 Feb '08  
GeneralRe: Hmm PinmemberPIEBALDconsult7:48 22 Feb '08  
QuestionHave you tested these? PinmemberCCMint17:44 21 Feb '08  
AnswerRe: Have you tested these? PinmemberPIEBALDconsult7:41 22 Feb '08  
GeneralSo it is not me only... PinmemberOleg Shilo16:35 21 Feb '08  
GeneralRe: So it is not me only... PinmemberPIEBALDconsult7:40 22 Feb '08  
GeneralRe: So it is not me only... PinmemberOleg Shilo11:06 24 Feb '08  
GeneralRe: So it is not me only... PinmemberThomas Weller18:44 29 Nov '08  
GeneralRe: So it is not me only... PinmemberPIEBALDconsult5:57 30 Nov '08  
GeneralRe: So it is not me only... PinmemberOleg Shilo12:10 30 Nov '08  
GeneralRe: So it is not me only... PinmemberThomas Weller23:34 30 Nov '08  
GeneralRe: So it is not me only... PinmemberPIEBALDconsult11:08 1 Dec '08  
GeneralRe: So it is not me only... Pinmembermm5285043:53 30 Jan '09  
GeneralRe: So it is not me only... PinmemberPIEBALDconsult5:22 30 Jan '09  
GeneralRe: So it is not me only... Pinmembermm5285049:05 31 Jan '09  
GeneralRe: So it is not me only... PinmemberPIEBALDconsult9:18 31 Jan '09  
GeneralRe: So it is not me only... Pinmembermm5285046:14 1 Feb '09  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 21 Feb 2008
Article Copyright 2008 by PIEBALDconsult
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid