2
votes
3answers
131 views
What is a good library for creating PDFs in Delphi 2010?
What is a good library for creating PDFs in Delphi 2010?
Pre Unicode I used PowerPDF, which though obsolete, was flexible enough to do what I wanted to do (very customized non-db/ …
0
votes
2answers
39 views
What do these PHP mbstring settings do?
I'm trying to figure out exactly what these php.ini settings do. What happens when they're set to different values? When are they necessary? When are they harmful?
mbstring.langu …
16
votes
3answers
164 views
What is Perl’s “standard string comparison order”?
This is really a double question, my two end goals having answers to:
What is the standard string comparison order, in terms of the mechanics?
What's a better name for that so I …
1
vote
2answers
135 views
Is There An Efficient Whole Word Search Function in Delphi?
In Delphi 2009 or later (Unicode), are there any built-in functions or small routines written somewhere that will do a reasonably efficient whole word search where you provide the …
1
vote
4answers
85 views
In Unicode, why are there two representations for the Arabic digits?
I was reading the specification of Unicode @ Wikipedia link text
and I see that each of the Arabic digits has 2 Unicode codepoints.
For example 1 is defined as U+0661 and as U+06F1 …
1
vote
1answer
16 views
Is the Unicode prefix N still needed in SQL Compact Edition?
At least in previous versions of SQL Server, you had to prefix Unicode string constants with an "N" to make them be treated as Unicode. Thus,
select foo from bar where fizz = N'bu …
3
votes
5answers
153 views
How do I detect unicode characters in a Java string?
Suppose I have a string that contains Ü. How would I find all those unicode characters? Should I test for their code? How would I do that?
For example, given the string "AÜXÜ", I' …
-3
votes
3answers
112 views
How do I unaccent Unicode characters in a Perl string? [closed]
Possible Duplicate:
How do I detect unicode characters in a Java string?
Inspired from How do I detect Unicode characters in a Java string?
Suppose I have a string that c …
0
votes
3answers
59 views
How to enforce unicode arguments for methods?
I have a model class with getter and setter methods, and the occasional static methods. I would like to enforce the usage of unicode strings as arguments for specific methods and u …
0
votes
2answers
50 views
C++ Unicode Encryption Library Required (Or is it?)
I need to encryption several pieces of text in a file along side unencrypted text in the same file. All the data is Unicode text.
In all the encryption libraries I have looked a …
3
votes
1answer
133 views
Emacs 23 uses character set four times larger than Unicode - why?
From Emacs 23.1 NEWS:
*** The Emacs character set is now a superset of Unicode. (It has about
four times the code space, which
should be plenty).
And more details later o …
1
vote
4answers
120 views
Is it possible to use a Unicode “argv”?
Hi, I'm writing a little wrapper for an application that uses files as arguments.
The wrapper needs to be in Unicode, so I'm using wchar_t for the characters and strings I have. N …
0
votes
4answers
66 views
How can I write a Java function to return the standard name for a Unicode point?
I want to write a function
String getName(int codePoint) {
// ????
}
which will return the standard name given to the character that the given code point represents. For ex …
317
votes
21answers
19k views
Twitter image encoding challenge
If a picture's worth 1000 words, how much of a picture can you fit in 140 characters?
Note: That's it folks! Bounty deadline is here, and after some tough deliberation, I have dec …
1
vote
1answer
57 views
Generate Objective-C parser from BNF grammar
I have looked at the following software tools:
Ragel http://www.complang.org/ragel/
ANTLR http://www.antlr.org/
ANTLR seems the most straight-forward, however its documentation …
