• Home
Name
Date
Size
#Lines
LOC

..--

all/03-May-2024-280279

break/03-May-2024-690556

cal/03-May-2024-1,344905

case/03-May-2024-577455

citer/03-May-2024-512411

coll/03-May-2024-657568

csdet/03-May-2024-388319

date/03-May-2024-920714

datecal/03-May-2024-16488

datefmt/03-May-2024-958698

dtitvfmtsample/03-May-2024-263234

dtptngsample/03-May-2024-292247

layout/03-May-2024-6,3704,233

legacy/03-May-2024-774572

msgfmt/03-May-2024-729529

numfmt/03-May-2024-910670

plurfmtsample/03-May-2024-224178

props/03-May-2024-458377

strsrch/03-May-2024-691601

translit/03-May-2024-1,338883

uciter8/03-May-2024-1,3701,030

ucnv/03-May-2024-2,0221,429

udata/03-May-2024-982801

ufortune/03-May-2024-1,5341,077

ugrep/03-May-2024-884625

uresb/03-May-2024-1,1831,008

ustring/03-May-2024-999704

Makefile.inD03-May-20243 KiB10868

defs.mkD03-May-20241.2 KiB3216

readme.txtD03-May-20242.8 KiB8351

rules.mkD03-May-20241.3 KiB4221

readme.txt

1## Copyright (C) 2016 and later: Unicode, Inc. and others.
2## License & terms of use: http://www.unicode.org/copyright.html#License
3##
4## Copyright (c) 2002-2010, International Business Machines Corporation
5## and others. All Rights Reserved.
6
7This directory contains sample code
8Below is a short description of the contents of this directory.
9
10break - demonstrates how to use BreakIterators in C and C++.
11
12cal      - prints out a calendar.
13
14case    - demonstrates how to do Unicode case conversion in C and C++.
15
16csdet   -  demonstrates using ICU's CharSet Detection API
17
18date     - prints out the current date, localized.
19
20datefmt  - an exercise using the date formatting API
21
22layout   - demonstrates the ICU LayoutEngine
23
24legacy   - demonstrates using two versions of ICU in one application
25
26msgfmt   - demonstrates the use of the Message Format
27
28numfmt   - demonstrates the use of the number format
29
30props    - demonstrates the use of Unicode properties
31
32strsrch - demonstrates how to search for patterns in Unicode text using the usearch interface.
33
34translit - demonstrates the use of ICU transliteration
35
36uciter8.c - demonstrates how to leniently read 8-bit Unicode text.
37
38ucnv     - demonstrates the use of ICU codepage conversion
39
40udata    - demonstrates the use of ICU low level data routines (reader/writer in 'all' MSVC solution)
41
42ufortune - demonstrates packaging and use of resources in an application
43
44ugrep  - demonstrates ICU Regular Expressions.
45
46uresb    - demonstrates building and loading resource bundles
47
48ustring  - demonstrates ICU string manipulation functions
49
50
51==
52* Where can I find more sample code?
53
54 - The "uconv" utility is a full-featured command line application.
55    It is normally built with ICU, and is located in icu/source/extra/uconv
56
57 - The "icuapps" CVS module contains other applications and libraries not
58    included with ICU.  You can check it out from the CVS command line
59    by using for example,  "cvs co icuapps" instead of "cvs co icu",
60   or through WebCVS at http://dev.icu-project.org/cgi-bin/viewcvs.cgi/icuapps/
61
62==
63* How do I build the samples?
64
65 - See the Readme in each subdirectory
66
67 To build all samples at once:
68
69    Windows MSVC:
70            - build ICU
71	    - open 'all' project file in 'all' subdirectory
72            - build project
73            - sample executables will be located in /x86/Debug folders of each sample subdirectory
74
75    Unix:   - build and install (make install) ICU
76            - be sure 'icu-config' is accessible from the PATH
77            - type 'make all-samples' from this directory
78               (other targets:  clean-samples, check-samples)
79           Note: 'make all-samples' won't work correctly in out of source builds.
80
81            - legacy and layout are not included in these lists,
82                   please see their individual readmes.
83