Groovy – center()

  • Post author:
  • Post category:Groovy
  • Post comments:0 Comments
recipient padded

Returns a new String of length numberOfChars consisting of the recipient padded on the left and right with space characters.

Syntax

String center(Number numberOfChars)

Parameters

Number โ€“ Number of characters for the new string.

Return Value

This method returns a string.

Example

Following is an example of the usage of this method โˆ’

class Example { 
   static void main(String[] args) { 
      String a = "HelloWorld"; 
      println(a.center(30)); 
   } 
}

When we run the above program, we will get the following result โˆ’

HelloWorld

Previous Page:-Click Here

Leave a Reply