Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am looking to create a reg ex in JS that obtains 2 values from a string:

The string is always in the following format value1[value2].

what is the best way to do this?

share|improve this question
3  
What have you tried so far? – maerics Jun 13 '12 at 18:49

4 Answers

up vote 5 down vote accepted
var str = "value1[value2]";
var match = str.match(/([^\[]*)\[([^\]]*)\]/);
// match = ["value1[value2]", "value1", "value2"]

Explanation

  • ([^\[]*): capture everything until the [ character.
  • \[: the [ character.
  • ([^\]]*): capture everything until the ] character.
  • \]: the ] character.
share|improve this answer
var str = "value1[value2]";
var arr = str.split('[');

var value1 = arr[0];
var value2 = arr[1].substr(0, arr[1].length -1);
share|improve this answer
function getValues(str) {
  var m = (''+str).match(/^(.*?)\[(.*?)\]$/);
  return (m) ? [m[1], m[2]] : null;
}
getValues('value1[value2]'); // => ["value1", "value2"]
getValues('foobar'); // => null

Of course, if you are sure that your input is already validated then you can simply extract values by index, which should be the fastest:

function getValues2(str) {
  var idx = str.indexOf('[');
  return [str.substr(0, idx), str.substr(idx+1, str.length-idx-2)];
}
share|improve this answer

I would think that the most readable regex expression would be something along the lines of:

str.match(/(.+?)([?)(.+?)(]?)/)

Simply returning the results you are interested in. Alexander's answer would certainly work, but I personally find excessive use of brackets and slashes to be very hard to read.

share|improve this answer
Unfortuantely this one doesn't work it returns ["value1[value2]", "value1[value2]", ""] – Lizard Jun 13 '12 at 19:02

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.