format

abstract fun format(message: String): String

Formats the given message and returns the formatted string.

The method takes a raw string input and returns it in a modified format based on the implementation's specific logic. The formatting could include operations like trimming, appending, uppercasing, or any other textual manipulation.

Return

The formatted string.

Parameters

message

The raw string to be formatted.