1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
4 **********************************************************************
5 * Copyright (c) 2002-2005, International Business Machines Corporation
6 * and others. All Rights Reserved.
7 **********************************************************************
8 * Date Name Description
9 * 01/14/2002 aliu Creation.
10 **********************************************************************
15 #include "unicode/utypes.h"
19 * \brief C++ API: UnicodeReplacer
22 #if U_SHOW_CPLUSPLUS_API
30 * <code>UnicodeReplacer</code> defines a protocol for objects that
31 * replace a range of characters in a Replaceable string with output
32 * text. The replacement is done via the Replaceable API so as to
33 * preserve out-of-band data.
35 * <p>This is a mixin class.
39 class U_I18N_API UnicodeReplacer
/* not : public UObject because this is an interface/mixin class */ {
47 virtual ~UnicodeReplacer();
50 * Replace characters in 'text' from 'start' to 'limit' with the
51 * output text of this object. Update the 'cursor' parameter to
52 * give the cursor position and return the length of the
55 * @param text the text to be matched
56 * @param start inclusive start index of text to be replaced
57 * @param limit exclusive end index of text to be replaced;
58 * must be greater than or equal to start
59 * @param cursor output parameter for the cursor position.
60 * Not all replacer objects will update this, but in a complete
61 * tree of replacer objects, representing the entire output side
62 * of a transliteration rule, at least one must update it.
63 * @return the number of 16-bit code units in the text replacing
64 * the characters at offsets start..(limit-1) in text
67 virtual int32_t replace(Replaceable
& text
,
73 * Returns a string representation of this replacer. If the
74 * result of calling this function is passed to the appropriate
75 * parser, typically TransliteratorParser, it will produce another
76 * replacer that is equal to this one.
77 * @param result the string to receive the pattern. Previous
78 * contents will be deleted.
79 * @param escapeUnprintable if TRUE then convert unprintable
80 * character to their hex escape representations, \\uxxxx or
81 * \\Uxxxxxxxx. Unprintable characters are defined by
82 * Utility.isUnprintable().
83 * @return a reference to 'result'.
86 virtual UnicodeString
& toReplacerPattern(UnicodeString
& result
,
87 UBool escapeUnprintable
) const = 0;
90 * Union the set of all characters that may output by this object
92 * @param toUnionTo the set into which to union the output characters
95 virtual void addReplacementSetTo(UnicodeSet
& toUnionTo
) const = 0;
99 #endif // U_SHOW_CPLUSPLUS_API