8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I've recently started using the lib and am loving the ease of use and options.
My only problem is that hebrew strings are not displaying correctly.
I have tried all kinds of encoding/decoding but nothing seems to work.
Does this lib support hebrew? if so, can you point me in the right direction to get it working?
What im doing right now is this:
worksheet.addRow({ message:"משהו שכתוב בעברית" // this translates to: "something in hebrew" })
The CSV file gets generated perfectly, but what I get in the "message" field is something like this: ׳�׳©׳”׳• ׳©׳›׳×׳•׳‘ ׳‘׳¢׳‘׳¨׳™׳×
I hope this is enough information to resolve this. Once again - loving this lib, thanks so much for making it.
Thanks :)
The text was updated successfully, but these errors were encountered:
I think the problem is with the encoding. When you save it, try something like this:
const wb = new ExcelJS.Workbook(); const ws = wb.addWorksheet('wheee'); ws.getCell('A1').value = 'משהו שכתוב בעברית'; wb.csv.writeFile('test.csv', { encoding: 'UTF-8' })
Sorry, something went wrong.
No branches or pull requests
Hello,
I've recently started using the lib and am loving the ease of use and options.
My only problem is that hebrew strings are not displaying correctly.
I have tried all kinds of encoding/decoding but nothing seems to work.
Does this lib support hebrew? if so, can you point me in the right direction to get it working?
What im doing right now is this:
The CSV file gets generated perfectly, but what I get in the "message" field is something like this:
׳�׳©׳”׳• ׳©׳›׳×׳•׳‘ ׳‘׳¢׳‘׳¨׳™׳×
I hope this is enough information to resolve this.
Once again - loving this lib, thanks so much for making it.
Thanks :)
The text was updated successfully, but these errors were encountered: