Open In App

Java String Class indent() Method With Examples

Last Updated : 13 Apr, 2021
Summarize
Comments
Improve
Suggest changes
Share
1 Like
Like
Report

JDK 12 introduced indent() method in Java.lang.String class. This method is useful to add or remove white spaces from the beginning of the line to adjust indentation for each string line.

Syntax:

public String indent(int n)

Parameter: It takes integer n as input and does indentation accordingly. 

Also, each line is suffixed with “\n” (a newline character).

Procedure: 

When a string is provided to indent() method, 

  1. It calls lines() function
  2. Then, for each line, does indentation based on integer value provided as per user cases discussed below:
    • If n>0 (Positive)
      • Then n white spaces are added at the starting of each line and each line is suffixed with “\n”.
    • If n==0
      • Then the indentation remains as it is, only line is suffixed with “\n”.
    • If n<0 (Negative), then
      • If (+n) > leading white spaces available
        • Then all leading white spaces are removed for each line and each line is suffixed with “\n”
      • If (+n) < leading white spaces available
        • Then (+n) leading white spaces are removed for each line and each line is suffixed with “\n”
  3. Then, suffix each line with “\n”.
  4. Then, concatenates resulting string lines and returns

Implementation:

Example 1

Output:

GeeksforGeeks
A Computer Science portal for geeks.
Input String length: 50
    GeeksforGeeks
    A Computer Science portal for geeks.

New String length: 61
GeeksforGeeks
A Computer Science portal for geeks.

New String length: 51
GeeksforGeeks
A Computer Science portal for geeks.

New String length: 51

Example 2:

// Java Program to illustrate indent() method of 
// String class 

// Importing basic libraries 
import java.util.*;
import java.io.*;

// Class for indent() method
public class GFG {
  
  // Main driver method 
    public static void main(String args[])
    {
        // Input string
        String input = "GeeksforGeeks";
        System.out.println(input);
        System.out.println("Input String length: "
                           + input.length());

        // Call indent method on input string with n=5
        // (positive)
        String output = input.indent(5);
        System.out.println(output);
        System.out.println("New String length: "
                           + output.length());

        // Call indent method on output string with n=0
        String output1 = output.indent(0);
        System.out.println(output1);
        System.out.println("New String length: "
                           + output1.length());

        // Call indent method on output1 string with n=-3
        // (negative)
        String output2 = output.indent(-3);
        System.out.println(output2);
        System.out.println("New String length: "
                           + output2.length());
    }
}

  

Output:


 

GeeksforGeeks
Input String length: 13
    GeeksforGeeks

New String length: 19
    GeeksforGeeks

New String length: 19
 GeeksforGeeks

New String length: 16


 


Article Tags :
Practice Tags :

Similar Reads