Frank
Frank

Reputation: 56

Import a .txt file that uses UTF-8 character encoding

How to import a .txt file that uses UTF-8 character encoding on stata 13?

Upvotes: 1

Views: 1550

Answers (1)

user3396583
user3396583

Reputation: 149

import delimited <filename>, charset(utf8)

As mentioned, Stata 13 does not support utf8, but import delimited can convert it for Stata 13 as long as the characters you are importing can be represented using an extended ASCII encoding.

Upvotes: 3

Related Questions