Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions strings.md
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ $result = Str::deduplicate('The---Laravel---Framework', '-');
// The-Laravel-Framework
```

<a name="method-doesnt-end-with"></a>
<a name="method-str-doesnt-end-with"></a>
#### `Str::doesntEndWith()` {.collection-method}

The `Str::doesntEndWith` method determines if the given string doesn't end with the given value:
Expand All @@ -614,7 +614,7 @@ $result = Str::doesntEndWith('This is my name', ['name', 'foo']);
// false
```

<a name="method-doesnt-start-with"></a>
<a name="method-str-doesnt-start-with"></a>
#### `Str::doesntStartWith()` {.collection-method}

The `Str::doesntStartWith` method determines if the given string doesn't begin with the given value:
Expand Down