increase Indentation
fun increaseIndentation(originalString: String, increasedIndentation: Int): String
Content copied to clipboard
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
original String
The String to adjust.
increased Indentation
The number of additional tabs ( 0) to add after each line break.