Chinese characters in html not recognized
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi there! I need to read and parse some Chinese characters in some html files and save later into an excel worksheet.
Currently the main issue is that after reading the html file into character vector using urlread/webread, all the Chinese characters are displayed as weird symbols. Also in the following steps, it will be attempted to use strfind to find the index of Chinese characters in the complete character vector, but the Chinese characters to be searched for are displayed as ? in the m-file.
Untill now I have already tried out 2 methods to set the character encoding of MATLAB:
- slCharacterEncoding('GBK') (since the source html adopts GBK character encoding)
- edit the lcdata.xml file on MATLAB path
Neither of these two methods worked, nor did changing the MATLAB preference font/the regional setting. I have basically exhausted all possibilities that I can think of and have foud on the web.
I would appreciate it if someone could help me out with a viable solution. Thanks in advance!
Bohan
0 comentarios
Respuestas (2)
Walter Roberson
el 17 de Abr. de 2019
S = webread(url);
proper_S = native2unicode( uint8(S), 'GPK');
0 comentarios
Patrik Forssén
el 6 de Feb. de 2021
opt = weboptions('CharacterEncoding', 'GBK');
str = webread(url, opt);
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!