Hi everyone,
Could anybody help me how to replace space with 60h ?
I'm working on integration with an API , if a send a string that contain " "(space) the API replace with +
Based on the documentation description :"NamePLU - 30 symbols for article's name plus separator for MU=60h"
Could anybody help me how to replace space with 60h ?
I'm working on integration with an API , if a send a string that contain " "(space) the API replace with +
Based on the documentation description :"NamePLU - 30 symbols for article's name plus separator for MU=60h"
B4X:
If PLUName.Contains(" ") Then
PLUName= Regex.Replace(" ",PLUName,"\<")
End If