मराठी

StringBuffer Functions

Advertisements

Topics

String Buffer Functions:

StringBuffer is another type of class with some added functionality to handle strings. You can declare an object of StringBuffer type. This creates reasonable space in the memory called Buffer. The following statements are used to create String Buffer objects : 

  1. StringBuffer m = new StringBuffer(“Computer” ) 
  2. StringBuffer m = new StringBuffer(25); 

The ‘b’ statement allocates memory for a string of upto 25 character. 

1. append( ):

This function is used to add a string at the end of another string. 

Syntax: <StringBuffer variablel>.append<StringBuffer variable2>; 

2. setCharAt(Position or Index, Character) 

This function is used to replace a character with another character at a specified index of the string. 

Syntax: <String Buffer variable>. set<CharAt(Index, Character)> 

3. insert(int Position or Index, String) & delete(int lndexl, int lndex2)  

Insert adds string at the given position. Delete will delete the string from index 1 to index 2.  

4. setLength(int value) 

If a StringBuffer is too short to store input, use the `setLength()` function to increase its length as needed. 

Syntax: <StringBuffer variable>.setLength<(Number of characters)>; 

5. String reverse( ) 

This is a powerful function used to reverse the characters of a given string. Syntax: <StringBuffer variable>.reverse( );  

If you would like to contribute notes or other learning material, please submit them using the button below.

Related QuestionsVIEW ALL [16]

Advertisements
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×