function div_into_string($str_div,$str, $n) { $pre = substr( $str, 0, $n ); $post = substr( $str, $n + 1 ); return $str . $str_div . $post;}