Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/subsoap/defstring
A module with a set of extra string functions for Defold
https://github.com/subsoap/defstring
defold-game-engine
Last synced: 2 months ago
JSON representation
A module with a set of extra string functions for Defold
- Host: GitHub
- URL: https://github.com/subsoap/defstring
- Owner: subsoap
- License: cc0-1.0
- Created: 2017-10-03T00:41:57.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-03-07T05:18:38.000Z (almost 4 years ago)
- Last Synced: 2024-10-04T22:09:03.220Z (3 months ago)
- Topics: defold-game-engine
- Language: Lua
- Homepage:
- Size: 17.6 KB
- Stars: 5
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-defold - DefString
README
# DefString
A module with a set of extra string functions for DefoldThis is a community project you are welcome to contribute to it
View the list of functions at https://github.com/subsoap/defstring/blob/master/defstring/defstring.lua
## Installation
You can use DefString in your own project by adding this project as a [Defold library dependency](http://www.defold.com/manuals/libraries/). Open your game.project file and in the dependencies field under project add:https://github.com/subsoap/defstring/archive/master.zip
Once added, you must require the main Lua module via```
local defstring = require("defstring.defstring")
```
Then you can use the DefString functions for example via```
print(defstring.capitalize_every_word("hello world defstring"))
```