increaseIndentation

fun increaseIndentation(originalString: String, increasedIndentation: Int): String

Increase the indentation by the given non-negative amount. The first line of the string (prior to the first line break) is not affected.

Return

The newly indented string.

Parameters

originalString

The String to adjust.

increasedIndentation

The number of additional tabs ( 0) to add after each line break.