0

I am trying to print code 39 Barcode using zebra ZPL. My Field Data is as follows :

^FDabc-def^etc..

Is there a command that will help skip the "-" in the Barcode? I only need to print "abcdef" without the special character.

Thanks.

J Doe
  • 49
  • 5

1 Answers1

1

In the code generating the ZPL, do a substring-replace and replace “-“ with “”.

EdHayes3
  • 1,777
  • 2
  • 16
  • 31