_Guile wrote...
/insert facepalm.jpg.....
I forgot the Any Number String... like... "*#" for example...
it is "*n"
Secondly, could someone shoot me a custom function that can remove any spaces from a string?
Why not just use the one in x3_inc-Strings.
Example:
#include "x3_inc_string"
void main()
{
string sSource = " S P A C E D ";
sSource = StringReplace( sSource, " ", "");
}
Modifié par Lightfoot8, 27 mai 2013 - 04:36 .