How to give space between string by coding
You may come across a scenario were you need to provide the space between string.X3 has a function “space$(n)” which returns a string with n spaces, Syntax as below.
Syntax:
space$(nb_esp)
space$(nb_esp) returns a string comprising nb_esp spaces(ascii code 32). This function is thus equivalent to string$(nb_esp, 32).The result is a Char type. As shown below, space$(20) which specify the 20 spaces between string.