Open In App

BreakIterator setText(String) method in Java with Examples

Last Updated : 21 Jun, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

The setText() method of java.text.BreakIterator class is used to set the new text into the BreakIterator.
Syntax: 
 

public void setText(String newText)

Parameter: This method takes text in the form of string as parameter.
Return Value: This method returns nothing.
Below are the examples to illustrate the setText() method:
Example 1: 
 

Java




// Java program to demonstrate setText() method
 
import java.text.*;
import java.util.*;
import java.io.*;
 
public class GFG {
    public static void main(String[] argv)
    {
        // creating and initializing BreakIterator
        BreakIterator wb
            = BreakIterator.getWordInstance();
 
        // setting text for BreakIterator
        // using setText() method
        wb.setText("Code Geeks");
 
        // getting the text being scanned by
        // using getText() method
        StringCharacterIterator text
            = (StringCharacterIterator)wb.getText();
 
        // display the result
        System.out.print("Retrieved text is : "
                         + text.first());
        for (int i = text.getBeginIndex() - 1;
             i < text.getEndIndex() - 2;
             i++)
            System.out.print(text.next());
    }
}


Output

Retrieved text is : Code Geeks

Example 2: 
 

Java




// Java program to demonstrate setText() method
 
import java.text.*;
import java.util.*;
import java.io.*;
 
public class GFG {
    public static void main(String[] argv)
    {
        // creating and initializing BreakIterator
        BreakIterator wb
            = BreakIterator.getWordInstance();
 
        // setting text for BreakIterator
        // using setText() method
        wb.setText("GeeksForGeeks");
 
        // getting the text being scanned by
        // using getText() method
        StringCharacterIterator text
            = (StringCharacterIterator)wb.getText();
 
        // display the result
        System.out.print("Retrieved text is : "
                         + text.first());
        for (int i = text.getBeginIndex() - 1;
             i < text.getEndIndex() - 2;
             i++)
            System.out.print(text.next());
    }
}


Output

Retrieved text is : GeeksForGeeks

Reference: https://docs.oracle.com/javase/9/docs/api/java/text/BreakIterator.html#first–
 



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads