In my VB class.. we were told to make a qbasic program, and im completely lost..
The project is to create a program that uses the FUCNTION statement to remove all spaces ina string.. how can i do this?
Printable View
In my VB class.. we were told to make a qbasic program, and im completely lost..
The project is to create a program that uses the FUCNTION statement to remove all spaces ina string.. how can i do this?
Is this in vb or qbasic? in vb use:
that probably won't work in qbasic.VB Code:
Function RemSpace(Text as string) as string remspace = replace(text, " ", "") End Function