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

I'm trying to build my regular expression, but I've failed. I'm trying to get everything after single or double dash (you can try it here):

var regEx = /(?<=[-{1,2}])[^-]\S*/g;

It works just fine, but it selects even if we have 3+ dashes too. I've tried something like /(?<=^[-{1,2}])[^-]\S*/g and /(?<=\b[-{1,2}])[^-]\S*/g, but then it crashes at all.

Thanks in advance.

share|improve this question
1  
I'm surprised it does not throw an error (well, it throws an error in Chrome). JavaScript does not support lookbehinds. In any case, you are not anchoring the expression. – Felix Kling Jan 31 at 16:50
2  
What's wrong with a simple ^-{1,2}([^-]*)$? – cha0site Jan 31 at 16:54
@FelixKling I'm sorry, I was trying to build it on this site so long, that I even haven't tried it in js and yes, it throws error. I thought it supports it just like Ruby. – erik1001 Jan 31 at 16:58
@cha0site I want to return the cleaned from dashes value in single regEx, actually this was my first expression and it seems to be my choise. – erik1001 Jan 31 at 16:59
So... ^(-{1,2})([^-]*)$ would do what you want then? – cha0site Jan 31 at 17:04
show 1 more comment

1 Answer

up vote 1 down vote accepted

Unfortunately javascript doesn't support lookbehind


You can use this regex with multiline option

^-{1,2}(?!-)(\S*)

After this you can use group 1 to access the required match..

share|improve this answer
I didn't know that before. This is exactly what I did at first, thanks. – erik1001 Jan 31 at 17:19

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.