Solution
TestStand includes built-in string functions such as Left() and Right(), which allow you to extract specific characters from either the beginning or end of a string. For instance, in the example below, we are working with barcode text and only need the first 10 characters. This can be achieved using the following command:
Locals.Variant = Left(Locals.Barcode, 10)
