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

I think I must just be really tired, because this should be really simple, but it's just not working for me. I want to match a portion of a string using a regex and then access that parenthesized substring.

var myString = "something format_abc"; // I want "abc"

var arr = /(?:^|\s)format_(.*?)(?:\s|$)/.exec(myString);

console.log(arr);     // prints: [" format_abc", "abc"] .. so far so good.
console.log(arr[1]);  // prints: undefined  (???)
console.log(arr[0]);  // prints: format_undefined (!!!)

can anyone see what I'm doing wrong?


Update: I've discovered that there was nothing wrong with the regex code above: the actual string which I was testing against was this:

"date format_%A"

Reporting that "%A" is undefined seems a very strange behaviour, but not directly related to this question, so I've opened a new one here. Thanks to everyone who responded.


Update: The issue was that console.log takes its parameters like a printf statement, and since the string I was logging ("%A") had a special value, it was trying to find the value of the next parameter.

Since this was just a silly bug on my part, I'll now close this question.

share|improve this question
3  
Please leave questions like this open so that others may benefit. – StingyJack Jan 12 '09 at 0:57
ok, i'll reopen then. :) – nickf Jan 12 '09 at 2:09
16  
Hahaha I just got a gold badge for this! – nickf Jun 13 '11 at 17:58
Please fix the code in the question, regexes are no functions and /(?:^|\s)format_(.*?)(?:\s|$)/(myString); will throw an exception. – Bergi Feb 16 at 16:41

6 Answers

up vote 202 down vote accepted

You can access capturing groups like this:

var myString = "something format_abc";
var myRegexp = /(?:^|\s)format_(.*?)(?:\s|$)/g;
var match = myRegexp.exec(myString);
alert(match[1]);  // abc

And if there are multiple matches you can iterate over them:

match = myRegexp.exec(myString);
while (match != null) {
    // matched text: match[0]
    // match start: match.index
    // capturing group n: match[n]
}
share|improve this answer
3  
+1 Please note that in the second example you should use the RegExp object (not only "/myregexp/"), because it keeps the lastIndex value in the object. Without using the Regexp object it will iterate infinitely – ianaz Aug 28 '12 at 12:06
1  
@ianaz: I don't believe 'tis true? http://jsfiddle.net/weEg9/ seems to work on Chrome, at least. – spinningarrow Oct 16 '12 at 7:26
3  
Please fix your second example so that exec is repeatedly executed, not only once. – Bergi Feb 16 at 16:40
@Bergi, just take a look at my answer instead: stackoverflow.com/a/14210948/96656 – Mathias Bynens May 11 at 18:46
var myString = "something format_abc";
var arr = myString.match(/\bformat_(.*?)\b/);
console.log(arr[0] + " " + arr[1]);

The \b isn't exactly the same thing (works on "--format_foo/", doesn't work on "format_a_b") though... But I wanted to show an alternative to your expression, which is fine. Of course, the match call is the important thing.

share|improve this answer
@JellicleCat I just don't understand your comment, as nothing in the thread talks about "global replacements". – PhiLho Mar 19 at 14:32

Here’s a method you can use to get the n​th capturing group for each match:

function getMatches(string, regex, index) {
    index || (index = 1); // default to the first capturing group
    var matches = [];
    var match;
    while (match = regex.exec(string)) {
        matches.push(match[index]);
    }
    return matches;
}

Example:

var myString = 'something format_abc something format_def something format_ghi';
var myRegEx = /(?:^|\s)format_(.*?)(?:\s|$)/g;

// Get an array containing the first capturing group for every match
var matches = getMatches(myString, myRegEx, 1);
// matches → ['abc', 'def', 'ghi']
share|improve this answer
1  
This a far superior answer to the others because it correctly shows iteration over all matches instead of only getting one. – Rob Evans May 11 at 12:08

Your syntax probably isn't the best to keep. FF/Gecko defines RegExp as an extension of Function.
(FF2 went as far as typeof(/pattern/) == 'function')

It seems this is specific to FF -- IE, Opera, and Chrome all throw exceptions for it.

Instead, use either method previously mentioned by others: RegExp#exec or String#match.
They offer the same results:

var regex = /(?:^|\s)format_(.*?)(?:\s|$)/;
var input = "something format_abc";

regex(input);        //=> [" format_abc", "abc"]
regex.exec(input);   //=> [" format_abc", "abc"]
input.match(regex);  //=> [" format_abc", "abc"]
share|improve this answer
+1 for explaining the FF-specific behavior of RegExp. – Dave Dopson Jan 2 at 19:45

Using your code:

console.log(arr[1]);  // prints: abc
console.log(arr[0]);  // prints:  format_abc

Edit: Safari 3, if it matters.

share|improve this answer

Your code works for me (FF3 on Mac) even if I agree with PhiLo that the regex should probably be:

/\bformat_(.*?)\b/

(But, of course, I'm not sure because I don't know the context of the regex.)

share|improve this answer
it's a space-separated list so I figured \s would be fine. strange that that code wasn't working for me (FF3 Vista) – nickf Jan 11 '09 at 12:04
Yes, truly strange. Have you tried it on its own in the Firebug console? From an otherwise empty page I mean. – PEZ Jan 11 '09 at 12:21

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.