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 have a string:

FROM {oj table1 left outer join table2 on table1.field1 = table2.field1}, table1, table3

How can I match the table1 outside the braces?

share|improve this question

1 Answer

up vote 2 down vote accepted

If you only want table1 outside the brackets.

/table1(?=,)/

or

/table1[^\}]+/
share|improve this answer
Neither of these worked. The first one returned nothing, and the 2nd returned 1 item, within the braces – psynnott Feb 1 '12 at 15:58
1  
Could you try this on Chrome JS console "FROM {oj table1 left outer join table2 on table1.field1 = table2.field1}, table1, table3".match(/table1(?=,)/) – Rezigned Feb 1 '12 at 17:19
Rezigned - brilliant, it worked, thanks. Upvoted – psynnott Feb 2 '12 at 10:13

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.