diff --git a/reference/intl/transliterator/transliterate.xml b/reference/intl/transliterator/transliterate.xml
index e2cd6f3aad..24f816ca5a 100644
--- a/reference/intl/transliterator/transliterate.xml
+++ b/reference/intl/transliterator/transliterate.xml
@@ -12,34 +12,42 @@
&reftitle.description;
&style.oop;
- public voidTransliterator::transliterate
+ public stringTransliterator::transliterate
stringsubject
- stringstart
- stringend
+ intstart
+ intend
&style.procedural;
transliterator_transliterate
+ mixedtransliterator
stringsubject
- stringstart
- stringend
+ intstart
+ intend
- Transliterates a string.
+ Transforms a string or part thereof using an ICU transliterator.
-
- &warn.undocumented.func;
-
&reftitle.parameters;
+
+ transliterator
+
+
+ In the procedural version, either a Transliterator
+ or a string from which a
+ Transliterator can be built.
+
+
+
subject
- The string to be transliterated.
+ The string to be transformed.
@@ -47,7 +55,9 @@
start
-
+ The start index (in UTF-16 code units) from which the string will start
+ to be transformed, inclusive. Indexing starts at 0. The text before will
+ be left as is.
@@ -55,7 +65,9 @@
end
-
+ The end index (in UTF-16 code units) until which the string will be
+ transformed, exclusive. Indexing starts at 0. The text after will be
+ left as is.
@@ -65,8 +77,42 @@
&reftitle.returnvalues;
- The transliterated string on success,
- &return.falseforfailure;.
+ The transfomed string on success, &return.falseforfailure;.
+
+
+
+
+ &reftitle.examples;
+
+
+ Converting escaped UTF-16 code units
+
+
+
+ &example.outputs.similar;
+
+
+
+