48 * UErrorCode errorCode = U_ZERO_ERROR; 49 * SimpleFormatter fmt("{1} '{born}' in {0}", errorCode); 50 * UnicodeString result; 51 * 52 * // Output: "paul {born} in england" 53 * fmt.format("england", "paul", result, errorCode); 54 *