It seems like you’re looking for a way to convert text between different formats (full-width to half-width, lowercase to uppercase, and half-width to full-width) using Pega. Unfortunately, there doesn’t appear to be a standard feature in Pega that directly supports these specific text conversions[1].
However, you can achieve this through custom Java code or by using Pega’s data transformation capabilities. Here are some general steps you might follow:
Custom Java Code: You can write custom Java code to handle the text conversion. This code can be integrated into your Pega application using a Java step in an activity.
Data Transformations: Use Pega’s data transformation rules to manipulate the text. You might need to create custom functions or use existing ones to perform the conversions.
@NoNickNamePega does not provide a built-in feature to convert full-width Kana to half-width Kana or small Kana to large Kana. However, you can achieve this by creating a custom Java function in Pega. The function would use a mapping of characters and iterate through the input string, replacing characters based on the mapping. This function can then be invoked in your Data Transform or Activity. Alternatively, you can create a Decision Table or Map Value in Pega to define the mappings and use a Data Transform to replace characters iteratively. For more advanced transformations, you could integrate a library like ICU4J, which provides robust Kana conversion tools, though this requires importing the library into your Pega environment