Skip to content
geeksforgeeks
  • Tutorials
    • Python
    • Java
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
    • Practice Coding Problems
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Java Arrays
  • Java Strings
  • Java OOPs
  • Java Collection
  • Java 8 Tutorial
  • Java Multithreading
  • Java Exception Handling
  • Java Programs
  • Java Project
  • Java Collections Interview
  • Java Interview Questions
  • Java MCQs
  • Spring
  • Spring MVC
  • Spring Boot
  • Hibernate
Open In App
Next Article:
StringBuffer offsetByCodePoints() method in Java with Examples
Next article icon

StringBuffer offsetByCodePoints() method in Java with Examples

Last Updated : 04 Dec, 2018
Comments
Improve
Suggest changes
Like Article
Like
Report
The offsetByCodePoints() method of StringBuffer class returns the index within this String contained by StringBuffer that is offset from the index passed as parameter by codePointOffset code points. Unpaired surrogates lies between index and codePointOffset count as one code point each. Syntax:
public int offsetByCodePoints(int index,                         int codePointOffset)
Parameters: This method takes two parameters:
  • index: the index to be offset
  • codePointOffset: the offset in code points
Return Value: This method returns the index within this sequence. Exception: This method throws IndexOutOfBoundsException if any one below is true:
  • index < 0 or index > length of the sequence.
  • codePointOffset > 0 and the subsequence starting with index has fewer than codePointOffset code points
  • codePointOffset < and the subsequence before index has fewer than the absolute value of codePointOffset code points.
Below programs demonstrate the offsetByCodePoints() method of StringBuffer Class: Example 1: Java
// Java program to demonstrate // the offsetByCodePoints() Method.  class GFG {     public static void main(String[] args)     {          // create a StringBuffer object         // with a String pass as parameter         StringBuffer             str             = new StringBuffer("WelcomeGeeks");          // print string         System.out.println("String = "                            + str.toString());          // returns the index within this sequence         int returnvalue = str.offsetByCodePoints(1, 4);          // prints the index         System.out.println("Index = " + returnvalue);     } } 
Output:
  String = WelcomeGeeks  Index = 5  
Example 2: Java
// Java program to demonstrate // the offsetByCodePoints() Method.  class GFG {     public static void main(String[] args)     {          // create a StringBuffer object         // with a String pass as parameter         StringBuffer             str             = new StringBuffer("India Is great");          // print string         System.out.println("String = " + str.toString());          // returns the index within this sequence         int returnvalue = str.offsetByCodePoints(2, 9);          // prints the index         System.out.println("Index = " + returnvalue);     } } 
Output:
  String = India Is great  Index = 11  
Example 3: To demonstrate IndexOutOfBoundException Java
// Java program to demonstrate // Exception thrown by offsetByCodePoints() Method.  class GFG {     public static void main(String[] args)     {          // create a StringBuffer object         // with a String pass as parameter         StringBuffer             str             = new StringBuffer("India");          try {              // returns the index within this sequence             int returnvalue = str.offsetByCodePoints(2, 9);              // prints the index             System.out.println("Index = " + returnvalue);         }          catch (IndexOutOfBoundsException e) {             System.out.println("Exception: " + e);         }     } } 
Output:
  Exception: java.lang.IndexOutOfBoundsException  
Reference: https://docs.oracle.com/javase/10/docs/api/java/lang/StringBuffer.html#offsetByCodePoints(int, int)

Next Article
StringBuffer offsetByCodePoints() method in Java with Examples

A

AmanSingh2210
Improve
Article Tags :
  • Java
  • java-basics
  • Java-lang package
  • Java-Functions
  • java-StringBuffer
Practice Tags :
  • Java

Similar Reads

    StringBuilder offsetByCodePoints() method in Java with Examples
    The offsetByCodePoints() method of StringBuilder class returns the index within this String contained by StringBuilder that is offset from the index passed as parameter by codePointOffset code points. Unpaired surrogates lies between index and codePointOffset count as one code point each. Syntax: pu
    2 min read
    StringBuffer setCharAt() method in Java with Examples
    The setCharAt() method of StringBuffer class sets the character at the position index to character which is the value passed as parameter to method. This method returns a new sequence which is identical to old sequence only difference is a new character ch is present at position index in new sequenc
    2 min read
    StringBuffer reverse() Method in Java with Examples
    The Java.lang.StringBuffer.reverse() is an inbuilt method that is used to reverse the characters in the StringBuffer. The method causes this character sequence to be replaced by the reverse of the sequence. Syntax: public StringBuffer reverse() Parameters: NA Return Value: The method returns the Str
    2 min read
    ShortBuffer reset() method in Java with Examples
    The reset() method of java.nio.ShortBuffer Class is used to reset this buffer's position to the previously-marked position. The mark's value remain unchanged during this process. Syntax: public final ShortBuffer reset() Parameter: This method do not accept any parameter. Return Value: This method re
    2 min read
    StringBuffer delete() Method in Java with Examples
    The java.lang.StringBuffer.delete() is an inbuilt method in Java which is used to remove or delete the characters in a substring of this sequence. The substring starts at a specified index start_point and extends to the character at the index end_point. Syntax : public StringBuffer delete(int start_
    3 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences