01.06.2015, 12:53
tomsmart1 schrieb:Also Bernd write in a other post that this function is not needed with Blitzbasic 2 and newer because it use always null-terminated strings so you can use '&' instead for example 'x=&String$'.
That's true, and I had worked around it using that method before, but I was using the old Null() function as a tidy method of combining strings as a parameter. 'x=&String1$+String2$' doesn't work for example, so you need x$=String1$+String2$:x=&x$ instead.
Thanks for your work on this!