There is a way to keep the text without changing it NS Basic?
Let me explain, I have this line of code:
datos = JSON.stringify({image1: foto1,image2: foto2}) <— ok
that I later use to call a web service, but I need the first parameter, “image1”, always start with “i” not “I” and that is that when I save it, Ns Basic converts it to me a capital letter, which sends an error since the web service expects “image1” and not “Image1”:
datos = JSON.stringify({Image1: foto1,image2: foto2}) <-- wrong