vote up 1 vote down star
1

Would you hire a developer who doesn't know how to use regular expressions?

That's about it, please state your reasons for or against, and feel free to give different answers for different situations. Just try to break up your answers if you can.

flag
15  
What position am I hiring for? – AakashM Jul 21 at 17:20
2  
Sometimes I think it might be better if people DIDN'T know regular expressions. You know the old saying. – Daniel Straight Jul 21 at 17:22
7  
You know... I don't think they ever taught us regexes in our school! Ever! I learned them on our own because they're incredibly useful though.... I don't know how people get by without them. – Mark Jul 21 at 17:27
1  
...All my regexes compile in Texas... – JohnFx Jul 21 at 20:13
1  
I tell you what - if you can't teach them regular expressions in 10 minutes during the interview and have them produce a regular expression at the end to parse something of your choosing and you need someone that understands regular expressions, then this isn't someone you should hire. – BenAlabaster Jul 21 at 20:25

34 Answers

1 2 next
vote up 26 vote down

Well, does he at least know what they are? If not, no. If so, then probably because no one can be an expert in everything, but if he has at least an understanding of the purpose, then he can look up syntax.

link|flag
9  
I agree. Not having heard of regular expressions at all is symptomatic of other problems... – Robert Venables Jul 21 at 17:21
3  
I cannot agree. I have two 'understudies' (both fresh out of college) and what each of them knows of RE and patterns has primarily been though exposure to local work projects in our IT center -- they both have other skills of course, and neither is an idiot. Working with promising personnel that have a clue about OOP is much more important than working with folks who've had exposure to the myriad of available development tech. Smart folks are trainable, and I'll take that most anyday. – Hardryv Jul 21 at 19:33
2  
@n8wrl: I got my degree in '86 also, and didn't know a thing about RE's for several years. However, my college used VMS systems. Also, RE's weren't really relevant for the work I did for my first several years after college. And even after I started working on *nix systems I didn't really begin to use RE's, other than grep & sed, until the mid- to late 90's due to the nature of the work I did then . – PTBNL Jul 21 at 20:35
show 1 more comment
vote up 8 vote down

Yes, although regular expressions are a powerful tool knowing them does not make or break a good developer.

There are many other important aspects of computer science developers must know to be a good hire.

link|flag
vote up 12 vote down

If you develop BIOSes, I doubt there's much need for regexes. The same obviously goes for most, if not all, embedded situations.

link|flag
2  
I disagree. While I agree that BIOS code should not use regexes, they are very useful while developing: for example for writing building scripts, doing more complex search&replace. – liori Jul 21 at 18:24
vote up 1 vote down

Just teach him or her how to use them. They are not that hard. But which developer does not know regular expressions? If he/she likes to know how they work, he/she just uses that Holy Google.

link|flag
vote up 3 vote down

It would depend on the situation. Many languages do not support regular expressions (for example MS SQL or MASM) so there would be no point in asking about regular expressions in an interview for an embeded ASM programmer.

link|flag
vote up 3 vote down

Sure, why not? Regular expressions is something that people who had experience with sysadmin and/or Unix often have contact with. But a developer used to Windows, for example, might rarely come into contact with it.

link|flag
1  
Then you are looking for a programmer with Unix or sysadmin experience, and not just a good programmer. – Daniel Jul 22 at 12:47
show 1 more comment
vote up 3 vote down

Of course! I've hired a few kids out of college who had just never been exposed to that world. I've also worked with excellent developers who have just never had a need.

Now, if we were talking about server admins, or maybe web programmers who claimed Perl experience, I would think twice. It depends a lot on the job.

link|flag
vote up 1 vote down

Basically, it depends.

If they are straight out of school, then I would - I don't think all (or really, that many) schools get into regular expressions, so you might be missing some decent junior candidates that way.

If they have been working for a while, then no.

link|flag
show 1 more comment
vote up 1 vote down

I did an IT diploma and did not know what a regular expression was when I got hired for my first job. I quess it would depend on the level of the position you are looking to hire for. I would be very hesitant to hire a senior developer who did not know what a regular expression was. Not so much a junior developer. Most of these things are learned through hands on experience.

link|flag
vote up 35 vote down

Does the job require knowledge of regular expressions? Would you eat at a steakhouse where the cook didn't know how to bake cakes?

link|flag
11  
Nicely said! Would you go to a whorehouse that couldn't make a decent martini? – Patrick McDonald Jul 21 at 17:36
1  
@Patrick - Yes. – Sean Bright Jul 21 at 18:21
show 3 more comments
vote up 61 vote down

Yes, if they were a solid programmer otherwise.

Regular expressions are a very simple thing to teach provided you have a person of sufficient skill. It's much easier to teach a good programmer regular expressions than it is to teach programming to someone who understands regular expressions. Hire the programmer.

link|flag
3  
Well said, sir! – Treb Jul 21 at 17:26
3  
Ask them a regex question in the phone interview, and if they don't come to the face-to-face having learned the basics, they're either not bothered or they haven't grasped them. – Draemon Jul 21 at 17:37
13  
+1 I hate people that think it's all about the regex. Sure, they are useful for some things, but programming doesn't begin and end with them. – amischiefr Jul 21 at 17:47
1  
The large majority of solid programmers understand regex anyway. So I probably wouldn't even ask except maybe as part of another question. – BenAlabaster Jul 21 at 20:16
3  
+1 Hire the programmer not the regex wizard. – Fake Code Monkey Rashid Jul 21 at 20:16
vote up 1 vote down

Yes, if he has other things to contribute to the team.

If for example you are using a specific protocol for communicating with external hardware and he is knowledgeable about this protocol, hire him.

If your area of work does not require string manipulation, I would at least consider to hire him. It's not as if regex is the single most important thing every programmer needs to know. They are a tool, very useful if you are doing string manipulation. Nothing more.

Of course, not knowing at least some very basic regex is a bad sign. He may have other knowlegde gaps, in more important areas. That is something you have to decide on a case by case base.

link|flag
vote up 0 vote down

Agree with Daniel and Chris, if the developer has perl or other scripting experience then regexp is something that (s)he should know, but for someone fresh out of school they might not have been exposed to regexp. Moreover, it could be that they have may used regular expression without knowing what they are.

link|flag
vote up -5 vote down

No, I would not.

Nor would I hire someone who doesn't know SQL, JavaScript, XML, CSS, or basic string manipulation using Excel formulas.

Developers who don't know these either don't have the experience I'm looking for, or they've been relying on GUI designers (e.g., VS) or leaky abstractions (e.g., LINQ) rather than actually learning the languages required by the platforms they are developing for.

Edit: Wow, such negativity! Sheesh. FWIW, I was talking specifically about hiring developers for the technologies our business (a consulting firm) deals with. I don't need "integration developers" and I sure as hell don't need a C++ person who can't write decent cross-browser HTML/CSS. And like it or not, in the real world outside the ivory dungeon of Big-Corporate-IT, basic ability to do data manipulation using RegEx and even (gasp!) Excel is part of the job. Data management falls on developers because the line staff don't have the skills and we have a crapload of incoming data to deal with. We don't get to write kernel mods all day, nor can we wrap ourselves in comfy 10-layer-deep enterprise abstractions. This isn't a Mort talking, either--our shop is run by operations, not IT, and we need people who can hit the ground running with the technologies we use every day.

link|flag
7  
Excel formulas? Really? What about powerpoint? – DanSingerman Jul 21 at 17:31
3  
Actually,I would consider PowerPoint skills more relevant than regex - A developer must have the skills to communicate with the management. Abd that is mostly done through colourful pictures and fancy animations ;-) – Treb Jul 21 at 17:38
2  
@Richard: don't confuse "developer" for "front-end developer". CSS is all but useless to an integration developer. – Damo Jul 21 at 17:43
3  
I am a C++ developer and don't know any of the things you mentioned. I don't see how not knowing a particular area makes anybody a bad developer. – Naveen Jul 21 at 17:57
4  
This post should have negative 1000 votes. – Bryan Rowe Jul 21 at 18:19
show 7 more comments
vote up 4 vote down

It might depend on the job, but someone who didn't know REs would indicate to me someone without much curiosity or interest in learning new and different skill, and I absolutely would try not to hire such a person.

link|flag
show 1 more comment
vote up 3 vote down

As long as they know how to ask for a regex on StackOverflow, yes.

There should be a regex.stackexchange.com for asking and answering regex questions.

There are dozens, maybe hundreds or thousands of niches. You could ask the same about assembly language.

If the programmer is a 3D engine builder who never uses strings, probably be better to know assembly, matrices, and shader programming than regex.

link|flag
vote up 8 vote down

I would not take that into account, even if he is expected to use regular expressions in the work that I am hiring him for. I would however be interested in knowing his capabilities of learning quickly, not only regular expressions, but anything that can be related to the work he is expected to do. That is what really matters.

link|flag
vote up 4 vote down

Well, first things first.

Hire a developer for what? What's the job description - what project types, what language(s), what other skills required?

Even if you mean someone who just codes, then you first have to answer - WHY do they need to know regexp for the job?

If the job does not need regexp experience, then it's not an issue. Same as if they don't know SQL (and won't be needing it for the job), or Perl, or Ruby, or COBOL or FORTRAN or any of a thousand other things that some jobs require but others simply don't.

Regexp by and of itself usually only really means that they were "doing stuff" in the unix world with Perl or scripts or similar stuff. While that can be incredibly useful in context, out of context it's no more valuable than anything else if you don't actually need it for the job description.

Cheers,

-R

link|flag
vote up 5 vote down

It's not something that would be a disqualification, no. However, I have trouble imagining a competent experienced developer of the kind we would hire not knowing regular expressions. Consider it a big red flag.

link|flag
1  
I agree with this. It's not that the engineer is necessarily going to use regular expressions on the job, it's that RE is a powerful aspect to the LAMP/*nix environment and knowledge of it demonstrates either broad knowledge or attractive curiosity. – pbreitenbach Jul 22 at 6:10
show 2 more comments
vote up 2 vote down

Not unless it was for a very junior trainee position (in which case I'd be looking for aptitude to learn, rather than any specific knowledge).

Even if he was going to be writing embedded assembly, regex is a tool any good programmer will use almost daily. It's not just about writing regexes for the code he's being paid to write, it's a skill that demonstrates he finds effective ways to do his job.

link|flag
vote up 2 vote down

Regex is confusing and 90% of the time i hack a regex expression from something I've found online. I also find that the JavaScript regex is different from the C# regex so there are portability issues. I suppose the candidate should prolly have heard of them if the position requires it, but it's just one technology in the toolbox.

aside: I once interviewed for a position where they wanted me to whiteboard out some code to parse XML. So I started scribbling DOM class code and XPATH queries and they stopped me saying 'what if i didn't have those classes'. so I started scribbling .indexof() code and they stopped me again and wanted me to do it with pointers to a char array. So I stopped them back and asked if they were really parsing XML is this cryptic way. they said no, but it's just an interview question they use. I recommended they review their interview questions.

link|flag
1  
I think you're taking the interview question too literally: I'd wager the point was to draw out the people who couldn't get past the class library -- 80% of the time it's there and works, but having someone that can actually do the last 20% is very important to actually getting things done. – James Cape Jul 21 at 18:17
3  
Most of these interview questions are asked in this manner because they have the question, they have the answer and if you don't give them the answer they have in front of them they will keep torturing you until you give them what they're looking for. – BenAlabaster Jul 21 at 20:21
show 2 more comments
vote up 1 vote down

To program in Perl? Definitely not.

To program in Excel? Regexes are not a factor.

So, it depends on what the person is doing.

And keep in mind that many talented programmers do not start with a computer science degree, earned by taking third year computability and complexity courses.

link|flag
vote up 1 vote down

Are they a developer that doesn't know how to write regular expressions, or a developer that doesn't know how to use regular expressions?

A developer that isn't adept at writing regular expressions but is adept at using existing regular expressions is probably still pretty efficient, since there are tons of preexisting regular expressions out that that cover an awful lot of common scenarios, particularly validation.

I'd be quite wary of a developer that was writing his/her own long and bug-prone routines for things that could easily be handled by regex.

But then again, as another commenter mentioned, regex isn't taught at a lot of schools. A bright but inexperienced developer (first few years in the biz?) simply might not quite get what they are or why they're tremendously useful.

(Personally, I fall into the category of an experienced developer who's not that great at writing regex but recognizes when they're the right tool for the job and will then borrow an existing one or cobble together his own after when the situation demands it.)

link|flag
vote up 2 vote down

IMO, anytime you establish an opinion of someone (such as whether to hire them) based on a single criteria (such as knowing regular expressions), you're making a huge mistake. In fact, the only time I would recommend you not hire someone strictly based on their lack of regular expression knowledge would be if the job's primary function included managing regular expressions. Otherwise, if they qualify for the position in other ways, encourage them to learn it on the job and give them a shot.

Simply saying (or thinking) "Ha! You don't know regular expressions? Get outta here..." or any variant of it is not professionalism, it's elitism, and has no place in the business world.

link|flag
vote up 8 vote down

It depends ... if they responded with "No, but I know finite state automata which are equivalent" then I would probably hire them :)

link|flag
vote up 1 vote down

In most cases, I wouldn't expect deep knowledge of Regexes, but I would expect, when confronted with a problem best solved with a regex, the candidate would minimally answer, "um... maybe a regex?" or "um... grep?"

Anything more than that is a bonus, with an otherwise decent candidate.

link|flag
vote up 2 vote down

I've been a professional developer for almost 20 years and I can count how many times I've used regex on one hand and have 3 fingers left. To use that as a barometer for programming skill is nonsense unless the job specifically calls for it.

I have built many enterprise-level critical systems for industries such as financial, pharma, insurance and many other. Regex has not been an issue.

link|flag
show 2 more comments
vote up 0 vote down

I think whether a candidate knows regex or not is irrelevant for a programming position, it is useful skill to know but if the developer knows the more important skills like software design patterns, oop, platform knowledge etc then I am confident he can learn regular expressions as well. OTOH if he has never heard of regular expressions then this IMO, shows a certain mindset that may disqualify him in my eyes.

link|flag
vote up 0 vote down

Absolutely NOT because he or she would most definitely NOT be a Vim user!

Just be sure, ask them to solve the Monty Hall Problem.

link|flag
vote up 0 vote down

Absolutely, if s/he can show good programming aptitude. After all, ain't that what you are looking for? How long it takes to learn the regex? A programmer may know nothing about regex, yet could be brilliant programmers, and not necessarily otherwise. And people who rely on regex to filter out candidates are somehow unbelievably foolish in my opinion. Sorry.

link|flag
1 2 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.