Search found 2 matches
- Thu May 17, 2012 7:08 am
- Forum: The Lounge
- Topic: regex for empty string after a space?
- Replies: 4
- Views: 15950
Re: regex for empty string after a space?
Thanks all for your answers. Iknow that what I ask is not possible with standard regular expressions. But \b and others are made to allow for more control on what is *matched" and go a bit beyond regex power. When writing emacs modes it is particularly important to have the exact matched string...
- Thu Feb 02, 2012 3:24 am
- Forum: The Lounge
- Topic: regex for empty string after a space?
- Replies: 4
- Views: 15950
regex for empty string after a space?
Hi, a little question to emacs lisp regex experts. I am a user of the \b \B \< \> special regex that match empty regex at special position. But I am stuck on the following: Is it possible to define a regex that matches an empty string after a space? Or, as a workaround to this in my case, is it poss...