characters
This function converts a string into a set containing the individual characters.
Indirect parameter passing is disabled
1
No. | Type | Description |
---|---|---|
1 input |
string | string to convert This striong will be broken down into characters |
Type | Description |
---|---|
set | Set of characters |
echo( characters( "Hello World") );
{'H','e','l','l','o',' ','W','o','r','l','d'}