How to convert TEXT in justified case .
Justified case : First letter in upper case rest in lower case .
Example : input - hi all .
output - Hi All .
CALL FUNCTION 'ISP_CONVERT_FIRSTCHARS_TOUPPER' "
EXPORTING
input_string = variable1 " c
* separators = ' -.,;:' " c
IMPORTING
output_string = variable2 " c
. " ISP_CONVERT_FIRSTCHARS_TOUPPER
Example : input - hi all .
output - Hi All .
CALL FUNCTION 'ISP_CONVERT_FIRSTCHARS_TOUPPER' "
EXPORTING
input_string = variable1 " c
* separators = ' -.,;:' " c
IMPORTING
output_string = variable2 " c
. " ISP_CONVERT_FIRSTCHARS_TOUPPER
Comments
Post a Comment