change full-width Kana to half-width Kana and change Small Kana to Large Kana

以下内容変換を実現したい。
全角→半角:コ→コ
小文字→大文字:ッ→ツ
半角→全角:コ→コ

Pega標準機能が見つからず、そもそもありますか?

なければ、実現方法としてご提示いただきますでしょうか?

Translated text to English*************************

I would like to realize the following content conversion.
Full-width →half-width: →
Lowercase → uppercase: →
Half-width →full-width: →

Can’t find the Pega standard feature, is there one at all?

If not, would you please present it as a way to realize it?

@NoNickName

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:

  1. 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.

  2. 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