I extract data from a SQLite table and populate a BBCodeView in an xClv. But when the text data contains [ or ], it crashes because it mistakes them for malformed BCTextEngine tags. Example of a text string: BBC Sessions [Disc 1] [Live]. I used the replace function to replace [ with ( and ] with ) as in : s=s.Replace("[", "(").Replace("]", ")").
It works of course, but I was wondering if there is a way to do it perhaps with smart string literals or other means without changing the data
It works of course, but I was wondering if there is a way to do it perhaps with smart string literals or other means without changing the data