A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.tutorialspoint.com/java/lang/string_valueof_chararray_count.htm below:

Java.lang.String.valueOf() Method

Java.lang.String.valueOf() Method Description

The java.lang.String.valueOf(char[] data, int offset, int count) method returns the string representation of a specific subarray of the char array argument.The contents of the subarray are copied and subsequent modification of the character array does not affect the newly created string.

Declaration

Following is the declaration for java.lang.String.valueOf() method

public static String valueOf(char[] data, int offset, int count)
Parameters Return Value

This method returns a string representing the sequence of characters contained in the subarray of the character array argument.

Exception

IndexOutOfBoundsException − if offset is negative, or count is negative, or offset+count is larger than data.length.

Example

The following example shows the usage of java.lang.String.valueOf() method.

package com.tutorialspoint;

import java.lang.*;

public class StringDemo {

   public static void main(String[] args) {

      // character array chararray1 with offset 2
      char[] chararr1 = new char[] { 't', 'u', 't', 's' };
      String str1 = String.valueOf(chararr1, 2, 2);

      // character array chararray2 with offset 1
      char[] chararr2 = new char[] { '2', '1', '5' };
      String str2 = String.valueOf(chararr2, 1, 2);

      // prints the string representations   
      System.out.println(str1);
      System.out.println(str2);
   }
}

Let us compile and run the above program, this will produce the following result −

ts
15

java_lang_string.htm


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4