- 
          
- 
                Notifications
    You must be signed in to change notification settings 
- Fork 19
string_insert
        CryoEagle edited this page Dec 26, 2018 
        ·
        6 revisions
      
    Returns a copy of a given string with a substring inserted into a chosen position.
string_insert(substr, str, index)| Argument | Description | 
|---|---|
| stringsubstr | The substring to be inserted | 
| stringstr | The string to be copied | 
| intindex | The position in characters of the string to insert the substring | 
Returns: string
With this function you can create a new string made up of two strings, where one has been inserted into the other at a given position. It can be useful, for example, to add a user name into a predefined text and so make the player of your game feel more involved in the action.
string username = "Bob";
string str = string_insert(username, "Hello, , how are you?", 7); This will insert the string in the "username" variable into the given phrase with the resulting string looking like this: "Hello, Bob, how are you?".
Back to strings