doesntStartWith/doesntEndWith
- Laravel
1use Illuminate\Support\Str;2 3Str::doesntEndWith('This is my name', 'dog'); // true4Str::doesntEndWith('This is my name', ['name', 'foo']); // false5 6Str::doesntStartWith('This is my name', 'That'); // true7Str::doesntStartWith('This is my name', ['This', 'That', 'There']); // false