Sign in to follow this  
Followers 0
Tyler_Basham

Assembling Barcode String in Structured Text

2 posts in this topic

Hello! I am trying to concat a string that includes some special characters. I have attached an image of the ST i have written. I do not know how to type the "RS" Record Separator, "GS" Group Separator, and "EOT" End of Transmission. I have tried converting the hexidecimal equvilent but have not had any luck that way. In the upper black box i have included the string that i am trying to generate. in the lower black box i have the string that was made from the ST. Thank you!

Share this post


Link to post
Share on other sites
Hello The syntax '$1E'is interpreted as hex 1E. For example: MyString1:= 'Hello'; (* Just text *) MyString2:= MyString1 + '$1E'; (*RS appended to the end *) (I've used the alternative to CONCAT, too) Using this method, you can access any control character Pp

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!


Register a new account

Sign in

Already have an account? Sign in here.


Sign In Now
Sign in to follow this  
Followers 0