Hi Rubens,
Those are the blocks from the old BLE extension. Here's a rough sketch of what you would do with the new version:
With the new BLE extension, you would use the ReadStrings block with the same UUIDs. You also need to specify whether the string data are encoded as UTF-16 (true) or UTF-8 (false). Most strings will be UTF-8, so start testing with false for the utf16 parameter. In the When BluetoothLE1.StringsReceived event, there is a stringValues parameter that is a list of all of the (null-terminated) strings parsed from the BLE packet. If you only have 1 string, it will be at index 1 of the list.
Evan