Initial community commit

This commit is contained in:
Jef
2024-09-24 14:54:57 +02:00
parent 537bcbc862
commit 20d28e80a5
16810 changed files with 4640254 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
Finds the last instance of a pattern within a string.
```lua
string.findlast("str", "pattern", plain)
```
### Parameters ###
`str` is the string to be searched. `pattern` is the pattern to search for; it may use Lua's pattern matching syntax. If `plain` is true, no pattern matching will be performed (faster).
### Return Value ###
The matching pattern, if found, or nil if there were no matches.
### Availability ###
Premake 4.0 or later.