Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

get the charectors inside braces regex php

$text = 'ignore everything except this (text)';
preg_match('#((.*?))#', $text, $match);
print $match[1];
 
PREVIOUS NEXT
Tagged: #charectors #braces #regex #php
ADD COMMENT
Topic
Name
4+4 =