<?php

$search_field_pattern  = "/\bdata\[SearchForm]\[(\w+)]/i";
if(preg_match("~\[\w+].*?\[(\w+)]~", "data[SearchForm][somestringhere]", $m)) {
    echo $m[1]; // => somestringhere
}