Thursday, June 11, 2026
HomeLanguagesJavaParsePosition setIndex() method in Java with Example

ParsePosition setIndex() method in Java with Example

The setIndex() method of java.text.ParsePosition class is used to set the current parse position of this ParsePositon object .

Syntax:

public void setIndex(int index)

Parameter: This method takes integer index at which current parse position is going to be set.

Return Value: This method has nothing to return.

Below are the examples to illustrate the setIndex() method:

Example 1:




// Java program to demonstrate
// setIndex() method
  
import java.text.*;
import java.util.*;
import java.io.*;
  
public class GFG {
    public static void main(String[] argv)
    {
        try {
  
            // Creating and initializing
            // new ParsePosition Object
            ParsePosition pos
                = new ParsePosition(1);
  
            // set index for current
            // Parse Position object
            // using setIndex() method
            pos.setIndex(3);
  
            // getting the current
            // ParsePosition of
            int i = pos.getIndex();
  
            // display result
            System.out.println(
                "current parse position: "
                + Integer.toString(i));
        }
  
        catch (ClassCastException e) {
  
            System.out.println(e);
        }
    }
}


Output:

current parse position: 3

Example 2:




// Java program to demonstrate
// setIndex() method
  
import java.text.*;
import java.util.*;
import java.io.*;
  
public class GFG {
    public static void main(String[] argv)
    {
        try {
  
            // Creating and initializing
            // new ParsePosition Object
            ParsePosition pos
                = new ParsePosition(500);
  
            // set index for current
            // Parse Position object
            // using setIndex() method
            pos.setIndex(30);
  
            // getting the current
            // ParsePosition of
            int i = pos.getIndex();
  
            // display result
            System.out.println(
                "current parse position: "
                + Integer.toString(i));
        }
  
        catch (ClassCastException e) {
  
            System.out.println(e);
        }
    }
}


Output:

current parse position: 30

Reference: https://docs.oracle.com/javase/9/docs/api/java/text/ParsePosition.html#setIndex-int-

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6896 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS