BreakIterator setText(String) method in Java with Examples
The setText() method of java.text.BreakIterator class is used to set the new text into the BreakIterator.
Syntax:
public void setText(String newText)
Paramter: 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 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( "Retrived text is : " + text.first()); for ( int i = text.getBeginIndex() - 1 ; i < text.getEndIndex() - 2 ; i++) System.out.print(text.next()); } } |
Retrived text is : Code Geeks
Example 2:
// 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( "Retrived text is : " + text.first()); for ( int i = text.getBeginIndex() - 1 ; i < text.getEndIndex() - 2 ; i++) System.out.print(text.next()); } } |
Retrived text is : GeeksForGeeks
Reference: https://docs.oracle.com/javase/9/docs/api/java/text/BreakIterator.html#first–
Recommended Posts:
- BreakIterator following() method in Java with Examples
- BreakIterator first() method in Java with Examples
- BreakIterator next() method in Java with Examples
- BreakIterator next(int) method in Java with Examples
- BreakIterator last() method in Java with Examples
- BreakIterator previous() method in Java with Examples
- BreakIterator preceding() method in Java with Examples
- BreakIterator getAvailableLocales() method in Java with Examples
- BreakIterator getText() method in Java with Examples
- BreakIterator current() method in Java with Examples
- BreakIterator isBoundary() method in Java with Examples
- BreakIterator setText(CharacterIterator) method in Java with Examples
- Java lang.Long.highestOneBit() method in Java with Examples
- Java lang.Long.numberOfTrailingZeros() method in Java with Examples
- Java.util.Collections.rotate() Method in Java with Examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.