I'm using this code to read a textfile containg lines like this
In B4i no problems, but in B4A I obtain "First" as key and "Par=this is the first par" as value
I can find workarounds by myself modifying the text file (removing spaces at beginning like "FirstPar=" or "First_Par=") but I would avoid it if possible..
The second difference is that in B4i I can read the file (UTF-8 encoded) and show correctly the accented letters, whil ein B4A I had to convert the file with ANSI encoding.
B4X:
First Par=this is the first par
In B4i no problems, but in B4A I obtain "First" as key and "Par=this is the first par" as value
I can find workarounds by myself modifying the text file (removing spaces at beginning like "FirstPar=" or "First_Par=") but I would avoid it if possible..
The second difference is that in B4i I can read the file (UTF-8 encoded) and show correctly the accented letters, whil ein B4A I had to convert the file with ANSI encoding.