Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Javascript, I just need to append a i to the regexp to make it case-insensitive. In .NET, I use a RegexOptions.IgnoreCase.

I know about case-fold-search. What I want is to specify that behavior in the regex itself, as specified in an elisp program. Possible?

share|improve this question
2  
Maybe you should switch to vi! ;-) (Sorry, but I couldn't resist.) – nikc.org May 31 '10 at 15:39
1  
I see you are a troublemaker! – Cheeso May 31 '10 at 15:40

1 Answer

up vote 5 down vote accepted

As someone said earlier, the way to control this is to bind case-fold-search. There is no way to specify the regex's case-sensitivity (or lack thereof) in the regex itself.

As it happens, regexp matching is already case-insensitive by default.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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