This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4aed9cd
)
No need to E<gt>.
author
Jarkko Hietaniemi
<jhi@iki.fi>
Fri, 22 Aug 2003 04:46:58 +0000
(
04:46
+0000)
committer
Jarkko Hietaniemi
<jhi@iki.fi>
Fri, 22 Aug 2003 04:46:58 +0000
(
04:46
+0000)
p4raw-id: //depot/perl@20811
pod/perluniintro.pod
patch
|
blob
|
blame
|
history
diff --git
a/pod/perluniintro.pod
b/pod/perluniintro.pod
index
8aebbf2
..
751bdc6
100644
(file)
--- a/
pod/perluniintro.pod
+++ b/
pod/perluniintro.pod
@@
-549,7
+549,7
@@
C<LATIN CAPITAL LETTER A WITH GRAVE>?)
The short answer is that by default, Perl compares strings (C<lt>,
C<le>, C<cmp>, C<ge>, C<gt>) based only on the code points of the
characters. In the above case, the answer is "after", since
-C<0x00C1>
E<gt
> C<0x00C0>.
+C<0x00C1> > C<0x00C0>.
The long answer is that "it depends", and a good answer cannot be
given without knowing (at the very least) the language context.