Hi,
I load a CSV file with the following code:
To read the list I use :
the row(0) contain french accented character like : Date d'opération but I got Date d'op�ration
Is there a way to get the accented character wich is in utf8 ?
Any help would be welcome.
Thank in advance
Luc
I load a CSV file with the following code:
B4X:
Private lstCSV As List
lstCSV.Initialize
Private fc As FileChooser
fc.Initialize
fc.SetExtensionFilter(Language.GetString("{0011}", "CSV"),Array As String("*.csv"))
fName = fc.ShowOpen(formName)
If fName <> "" Then
lstCSV = strUtil.LoadCSV(fName,"",";")
End If
To read the list I use :
B4X:
For Each row() As String In lstCSV
private s1 as string = row(0)
private s2 as string = row(1)
Next
the row(0) contain french accented character like : Date d'opération but I got Date d'op�ration
Is there a way to get the accented character wich is in utf8 ?
Any help would be welcome.
Thank in advance
Luc