<?php
error_reporting(-1);
$matches=array();
$regExp="/(,\\S|жы|шы|координально|сдесь|[^а-яА-Я]здел|[^,.]\\sа |[^.,]\\sно[\\.\\,]? )/ui";
$text="Зделай-ка мне раздел";
if (preg_match($regExp, $text, $matches))
{
	echo "В тексте ошибка: {$matches[0]}";
	
	}
	else
	{
		echo "Ошибок нет";
	}

// your code goes here