<?php

$string = "111abc222 111deg222 111hij222";
$pattern = "/111[a-z]+222/";

preg_match_all($pattern, $string, $matches);

print_r($matches);