String slicing in BYOND Discussion
|
|
On a scale of 1 to INCONCEIVABLE!, how difficult would it be to implement string slicing and in-place character editing of strings in the language's lexer?
Specifically, I'm looking at the following features:
var/string1 = "Hello world!"
var/string2 = string1[7..12] usr << string2
|
var/string3 = "I am the very model of a modern major general!" string3[46] = "." usr << string3
|
|