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

Possible Duplicate:
Get text in quotes

I have a string ["xx.xx.xx.xx"] I want it to only return what is inside the quotations.

share|improve this question
why not just a substr operation to strip off the first 2 and last 2 characters? – Marc B Oct 14 '12 at 8:43

marked as duplicate by Mat, dev-null-dweller, Brian Roach, Raghav Sood, Simone Carletti Oct 14 '12 at 9:14

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

You can use a regex with a capturing group:

if (preg_match('/\["(.*?)"\]/', '["xx.xx.xx.xx"]', $matches)) {
  echo $matches[1];
}
share|improve this answer
Yeah I figured this out a few minutes ago. Thanks. – Dan Oct 14 '12 at 8:04

Not the answer you're looking for? Browse other questions tagged or ask your own question.