Unicode strings: Difference between revisions

Content added Content deleted
(Add Vala example)
Line 1,253: Line 1,253:
*Future support? If somebody writes the libraries. For example, it is straight forward to write a front end to PCRE and thus acquire a Unicode aware regular expression engine.
*Future support? If somebody writes the libraries. For example, it is straight forward to write a front end to PCRE and thus acquire a Unicode aware regular expression engine.


=={{header|ZX Vala}}==
=={{header|Vala}}==


Vala strings are UTF-8 encoded by default. In order to print them correctly on the screen, use stdout.printf instead of print.
Vala strings are UTF-8 encoded by default. In order to print them correctly on the screen, use stdout.printf instead of print.