You are using the letter "A" as a delimiter for text transmission.
If you examine the AI2 Designer attributes of a Bluetooth client,
you will see a place where you can specify a delimiter value.
(Usually, people specify a LF here.)
In your case, provide the numerical value of "A" off an Ascii chart, decimal column.
If you examine the tool tip text of the Receive Bluetooth Bytes block
(not the exact name. browse around), you will see a special case of
how to specify how many bytes to receive if you want just enough
to reach the next delimiter and no further (0).
The decision to do the receive operation is still the same, bytes available > 0.
That should give you the text bytes up to the next "A", which you
can drop into a label.text or a variable.
ABG