I need validate textarea with this data:
string:data
string:data
string:google
I need allow only this format string in textarea. Allow break and one string with other with delimiter: ":".
I validate with:
$request->validate([
'textarea' => 'required|string|regex:/:/'
]);
But this is not working. How I can fix it? I need rule for my situation.