String handling. when you create a String object, you are creating a string that cannot be changed. That is, once a String object has been created, you.

Slides:



Advertisements
Similar presentations
Purpose : To convert this string to a new character array. Return Type : char[ ] Parameters : none Declaration : public char[ ] toCharArray() Returns.
Advertisements

Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All rights reserved. 1 Chapter 9 Strings.
Strings in Java 1. strings in java are handled by two classes String &
Chapter 7 Strings F To process strings using the String class, the StringBuffer class, and the StringTokenizer class. F To use the String class to process.
1 Working with String Duo Wei CS110A_ Empty Strings An empty string has no characters; its length is 0. Not to be confused with an uninitialized.
1 Strings and Text I/O. 2 Motivations Often you encounter the problems that involve string processing and file input and output. Suppose you need to write.
Chapter 7 Strings F Processing strings using the String class, the StringBuffer class, and the StringTokenizer class. F Use the String class to process.
Liang, Introduction to Java Programming, Fifth Edition, (c) 2005 Pearson Education, Inc. All rights reserved Chapter 8 Strings.
Java Programming Strings Chapter 7.
Strings An extension of types A class that encompasses a character array and provides many useful behaviors Chapter 9 Strings are IMMUTABLE.
©2004 Brooks/Cole Chapter 7 Strings and Characters.
Programming 2 CS112- Lab 2 Java
CSM-Java Programming-I Spring,2005 String Handling Lesson - 6.
23-Jun-15 Strings, Etc. Part I: String s. 2 About Strings There is a special syntax for constructing strings: "Hello" Strings, unlike most other objects,
Fundamental Programming Structures in Java: Strings.
Strings, Etc. Part I: Strings. About Strings There is a special syntax for constructing strings: "Hello" Strings, unlike most other objects, have a defined.
Lab session 3 and 4 Topics to be covered Escape sequences Escape sequences Variables /identifiers Variables /identifiers Constants Constants assignment.
28-Jun-15 String and StringBuilder Part I: String.
1 Strings and String Operations  What is a Strings?  Internal Representation of Strings  Getting Substrings from a String  Concatenating Strings 
Lesson 3 – Regular Expressions Sandeepa Harshanganie Kannangara MBCS | B.Sc. (special) in MIT.
String Class. Objectives and Goals Identify 2 types of Strings: Literal & Symbolic. Learn about String constructors and commonly used methods Learn several.
From C++ to Java A whirlwind tour of Java for C++ programmers.
Strings Carol Yarbrough AP Computer Science Instructor Alabama School of Fine Arts.
Working with string In java Four classes are provided to work with String:1) String 2)String Buffer 3)String Tokenizer 4)String Builder Note: An object.
Chapter 7: Characters, Strings, and the StringBuilder.
CHAPTER 9 Text Processing and More about Wrapper Classes Copyright © 2016 Pearson Education, Inc., Hoboken NJ.
10-2 Chapter 10 discusses the following main topics:  Introduction to Wrapper Classes  Character Testing and Conversion with the Character Class  More.
String Handling StringBuffer class character class StringTokenizer class.
Jaeki Song JAVA Lecture 07 String. Jaeki Song JAVA Outline String class String comparisons String conversions StringBuffer class StringTokenizer class.
String Object String is a sequence of characters. Unlike many other programming languages that implements string as character arrays, Java implements strings.
G51PR1 Introduction to Programming I University of Nottingham Unit 8 : Strings.
Strings And other things. Strings Overview The String Class and its methods The char data type and Character class StringBuilder, StringTokenizer classes.
1 Java Strings Dr. Randy M. Kaplan. 2 Strings – 1 Characters are a fundamental data type in Java It is common to assemble characters into units called.
CSI 3125, Preliminaries, page 1 String. CSI 3125, Preliminaries, page 2 String Class Java provides the String class to create and manipulate strings.
Chapter 3A Strings. Using Predefined Classes & Methods in a Program To use a method you must know: 1.Name of class containing method (Math) 2.Name of.
Strings and Related Classes String and character processing Class java.lang.String Class java.lang.StringBuffer Class java.lang.Character Class java.util.StringTokenizer.
Java String 1. String String is basically an object that represents sequence of char values. An array of characters works same as java string. For example:
Java Util Package Prepared by, S.Amudha AP/SWE. Calendar 1.The abstract Calendar class provides a set of methods that allows you to convert a time in.
1 Predefined Classes and Objects Chapter 3. 2 Objectives You will be able to:  Use predefined classes available in the Java System Library in your own.
17-Feb-16 String and StringBuilder Part I: String.
Data Types References:  Data Type:  In computer science and computer programming, a data type or simply type is a.
Chapter 8: Loops, Arrays, Strings Loop statements –do –while –for Arrays –declaration, allocation, initialization, access –multi-dimensional –heterogeneous.
The String class is defined in the java.lang package
String and StringBuffer classes
Strings, Characters and Regular Expressions
Strings, StringBuilder, and Character
EKT 472: Object Oriented Programming
University of Central Florida COP 3330 Object Oriented Programming
Programming in Java Text Books :
String and String Buffers
String Handling in JAVA
Primitive Types Vs. Reference Types, Strings, Enumerations
Modern Programming Tools And Techniques-I Lecture 11: String Handling
String and StringBuilder
Chapter 7: Strings and Characters
Object Oriented Programming
MSIS 655 Advanced Business Applications Programming
Part a: Fundamentals & Class String
String and StringBuilder
String and StringBuilder
String Handling String, StringBuffer, StringBuilder
Java – String Handling.
Lecture 07 String Jaeki Song.
String and StringBuilder
CS2011 Introduction to Programming I Strings
String methods 26-Apr-19.
Strings in Java.
Dr. Sampath Jayarathna Cal Poly Pomona
In Java, strings are objects that belong to class java.lang.String .
Presentation transcript:

String handling

when you create a String object, you are creating a string that cannot be changed. That is, once a String object has been created, you cannot change the characters that comprise that string. At first, this may seem to be a serious restriction. However, such is not the case. You can still perform all types of string operations. The difference is that each time you need an altered version of an existing string, a new String object is created that contains the modifications. The original string is left unchanged. This approach is used because fixed, immutable strings can be implemented more efficiently than changeable ones.

For those cases in which a modifiable string is desired, there is a companion class to String called StringBuffer, whose objects contain strings that can be modified after they are created. the strings within objects of type String are unchangeable means that the contents of the String instance cannot be changed after it has been created. However, a variable declared as a String reference can be changed to point at some other String object at any time.

The String Constructors The String class supports several constructors. To create an empty String, you call default constructor. For e.g., String s = new String(); will create an instance of String with no characters in it. Frequently, you will want to create strings that have initial values. The String class provides a variety of constructors to handle this. To create a String initialized by an array of characters, use the constructor shown here: String(char chars[ ]) Here is an example: char chars[] = { 'a', 'b', 'c' }; String s = new String(chars); This constructor initializes s with the string “abc”.

You can specify a subrange of a character array as an initializer using the following constructor: String(char chars[ ], int startIndex, int numChars) Here, startIndex specifies the index at which the subrange begins, and numChars specifies the number of characters to use. Here is an example: char chars[] = { 'a', 'b', 'c', 'd', 'e', 'f' }; String s = new String(chars, 2, 3); This initializes s with the characters cde. You can construct a String object that contains the same character sequence as another String object using this constructor: String(String strObj) Here, strObj is a String object.

// Construct one String from another. class MakeString { public static void main(String args[]) { char c[] = {'J', 'a', 'v', 'a'}; String s1 = new String(c); String s2 = new String(s1); System.out.println(s1); System.out.println(s2); } The output from this program is as follows: Java As you can see, s1 and s2 contain the same string.

Even though Java’s char type uses 16 bits to represent the Unicode character set, the typical format for strings on the Internet uses arrays of 8-bit bytes constructed from ASCII character set. Because 8-bit ASCII strings are common, the String class provides constructors that initialize a string when given a byte array. Their forms are shown here: String(byte asciiChars[ ]) String(byte asciiChars[ ], int startIndex, int numChars) In each of these constructors, the byte-to- character conversion is done by using the default character encoding of the platform.

// Construct string from subset of char array. class SubStringCons { public static void main(String args[]) { byte ascii[] = {65, 66, 67, 68, 69, 70 }; String s1 = new String(ascii); System.out.println(s1); String s2 = new String(ascii, 2, 3); System.out.println(s2); } This program generates the following output: ABCDEF CDE

The contents of the array are copied whenever you create a String object from an array. If you modify the contents of the array after you have created the string, the String will be unchanged. String Length To obtain this value, call the length( ) method, shown here: int length( ) The following fragment prints “3”, since there are three characters in the string s: char chars[] = { 'a', 'b', 'c' }; String s = new String(chars); System.out.println(s.length());

Special String Operations String Literals char chars[] = { 'a', 'b', 'c' }; String s1 = new String(chars); String s2 = "abc"; // use string literal String object is created for every string literal, you can use a string literal any place you can use a String object. Call methods directly on a quoted string as if it were an object reference System.out.println("abc".length()); 2/3/201610

String Concatenation : The + operator, concatenates two strings, producing a String object as the result String age = "9"; String s = "He is " + age + " years old."; System.out.println(s); String longStr = "This could have been " + "a very long line that would have " + "wrapped around. But string concatenation " + "prevents this."; System.out.println(longStr);

String Concatenation with Other Data Types int age = 9; String s = "He is " + age + " years old."; System.out.println(s); In this case, age is an int rather than another String, but the output produced is the same as before. The int value in age is automatically converted into its string representation within a String object String s = "four: " ; System.out.println(s); This fragment displays - four: 22 String s = "four: " + (2 + 2); Now s contains the string “four: 4”.

String Conversion and toString( ) Every class implements toString() because it is defined by Object. The toString( ) method has this general form: String toString( ) To implement toString( ), simply return a String object that contains the human readable string that appropriately describes an object of your class. class Box { // Override toString() for Box class. double width; double height; double depth; 2/3/201613

Box(double w, double h, double d) { width = w; height = h; depth = d; } public String toString() { return "Dimensions are " + width + " by " + depth + " by " + height + "."; } } class toStringDemo { public static void main(String args[]) { Box b = new Box(10, 12, 14); String s = "Box b: " + b; // concatenate Box object System.out.println(b); // convert Box to string System.out.println(s); } } The output of this program is shown here: Dimensions are 10.0 by 14.0 by 12.0 Box b: Dimensions are 10.0 by 14.0 by /3/201614

Character Extraction: The characters that comprise a string within a String object cannot be indexed as if they were a character array. Many of the String methods employ an index (or offset) into the string for their operation. Like arrays, the string indexes begin at zero. charAt( ) – To extract a single character from a String refer directly to an individual character via the charAt( ) method. – It has this general form: char charAt(int where ) 2/3/201615

– where is the index of the character that you want to obtain. The value of where must be nonnegative and specify a location within the string. – charAt( ) returns the character at the specified location. For example, char ch; ch = "abc".charAt(1); assigns the value “b” to ch. getChars( ) – To extract more than one character at a time, use the getChars( ) method. – It has this general form: void getChars(int sourceStart, int sourceEnd, char target[ ], int targetStart) 2/3/201616

– Here, sourceStart specifies the index of the beginning of the substring, and sourceEnd specifies an index that is one past the end of the desired substring. – The substring contains the characters from sourceStart through sourceEnd–1. – The array that will receive the characters is specified by target. – The index within target at which the substring will be copied is passed in targetStart. – The target array should be large enough to hold the number of characters in the specified substring. 2/3/201617Smitha N. Pai CSE Dept.

class getCharsDemo { public static void main(String args[]) { String s = "This is a demo of the getChars method."; int start = 10; int end = 14; char buf[] = new char[end - start]; s.getChars(start, end, buf, 0); System.out.println(buf); } Here is the output of this program: demo 2/3/201618

String Comparison equals( ) – To compare two strings for equality, use equals( ). – It has this general form: boolean equals(Object str) – str is the String object being compared with the invoking String object. – It returns true if the strings contain the same characters in the same order, and false otherwise. The comparison is case-sensitive. 2/3/201619

equalsIgnoreCase( ) – Comparison that ignores case differences, equalsIgnoreCase( ) – When it compares two strings, it considers A-Z to be the same as a-z. – It has this general form: boolean equalsIgnoreCase(String str) – Here, str is the String object being compared with the invoking String object. – It returns true if the strings contain the same characters in the same order, and false otherwise. 2/3/201620Smitha N. Pai CSE Dept.

class equalsDemo { public static void main(String args[]) { String s1 = "Hello"; String s2 = "Hello"; String s3 = "Good-bye"; String s4 = "HELLO"; System.out.println(s1 + " equals " + s2 + " -> " + s1.equals(s2)); System.out.println(s1 + " equals " + s3 + " -> " + s1.equals(s3)); System.out.println(s1 + " equals " + s4 + " -> " + s1.equals(s4)); System.out.println(s1 + " equalsIgnoreCase " + s4 + " -> " + s1.equalsIgnoreCase(s4)); } } 2/3/201621

The output from the program is shown here: Hello equals Hello -> true Hello equals Good-bye -> false Hello equals HELLO -> false Hello equalsIgnoreCase HELLO -> true regionMatches( ) The regionMatches( ) method compares a specific region inside a string with another specific region in another string. boolean regionMatches(int startIndex, String str2, int str2StartIndex, int numChars) boolean regionMatches(boolean ignoreCase, int startIndex, String str2, int str2StartIndex, int numChars)

startIndex specifies the index at which the region begins within the invoking String object. The String being compared is specified by str2. The index at which the comparison will start within str2 is specified by str2StartIndex. The length of the substring being compared is passed in numChars. If ignoreCase is true, the case of the characters is ignored. Otherwise, case is significant. startsWith( ) and endsWith( ) The startsWith( ) method determines whether a given String begins with a specified string. 2/3/201623

endsWith( ) determines whether the String in question ends with a specified string. boolean startsWith(String str) boolean endsWith(String str) boolean startsWith(String str, int startIndex) Here, str is the String being tested. If the string matches, true is returned. Otherwise, false is returned startIndex specifies the index into the invoking string at which point the search will begin "Foobar".endsWith("bar") "Foobar".startsWith("Foo") are both true. "Foobar".startsWith("bar", 3) returns true. 2/3/201624

equals( ) Versus == – The equals( ) method compares the characters inside a String object. The == operator compares two object references to see whether they refer to the same instance. – Two different String objects can contain the same characters, but references to these objects will not compare as equal: – The contents of the two String objects are identical, but they are distinct objects. s1 and s2 do not refer to the same objects and are, therefore, not == 2/3/201625

class EqualsNotEqualTo { public static void main(String args[]) { String s1 = "Hello"; String s2 = new String(s1); System.out.println(s1 + " equals " + s2 + " -> " + s1.equals(s2)); System.out.println(s1 + " == " + s2 + " -> " + (s1 == s2)); } Output of the preceding example: Hello equals Hello -> true Hello == Hello -> false 2/3/201626Smitha N. Pai CSE Dept.

compareTo( ) – To know which is less than, equal to, or greater than the next int compareTo(String str) – str is the String being compared with the invoking String. – The result of the comparison is returned and is interpreted as shown here: Value - Meaning – Less than zero- The invoking string is less than str. – Greater than zero- The invoking string is greater than str. – Zero -The two strings are equal. compareToIgnoreCase( ) int compareToIgnoreCase(String str) 2/3/201627Smitha N. Pai CSE Dept.

// A bubble sort for Strings. class SortString { static String arr[] = { "Now", "is", "the", "time", "for", "all", "good", "men", "to", "come", "to", "the", "aid", "of", "their", "country” }; public static void main(String args[]) { for(int j = 0; j < arr.length; j++) { for(int i = j + 1; i < arr.length; i++) { if(arr[i].compareTo(arr[j]) < 0) { String t = arr[j]; arr[j] = arr[i]; arr[i] = t; } } System.out.println(arr[j]); } } }

Searching Strings indexOf( ) lastIndexOf( ) – The methods return the index at which the character or substring was found, or –1 on failure. – To search for the first occurrence of a character, use int indexOf(int ch) – To search for the last occurrence of a character, use int lastIndexOf(int ch) – ch is the character being sought. – To search for the first or last occurrence of a substring, use int indexOf(String str) int lastIndexOf(String str) – str specifies the substring. 2/3/201629Smitha N. Pai CSE Dept.

int indexOf(int ch, int startIndex) int lastIndexOf(int ch, int startIndex) int indexOf(String str, int startIndex) int lastIndexOf(String str, int startIndex) Here, startIndex specifies the index at which point the search begins. For indexOf( ), the search runs from startIndex to the end of the string. For lastIndexOf( ), the search runs from lastIndex to zero. 2/3/201630Smitha N. Pai CSE Dept.

Modifying a String To modify a String either copy it into a StringBuffer or use one of the following String methods, which will construct a new copy of the string. substring( ) String substring(int startIndex) – startIndex specifies the index at which the substring will begin. – It returns a copy of the substring that begins at startIndex and runs to the end of the invoking string. 2/3/201631Smitha N. Pai CSE Dept.

String substring(int startIndex, int endIndex) – startIndex specifies the beginning index, and endIndex specifies the stopping point. – The string returned contains all the characters from the beginning index, up to, but not including, the ending index. class StringReplace { public static void main(String args[]) { String org = "This is a test. This is, too."; String search = "is"; String sub = "was"; String result = ""; int i; 2/3/201632Smitha N. Pai CSE Dept.

do { // replace all matching substrings System.out.println(org); i = org.indexOf(search); if(i != -1) { result = org.substring(0, i); result = result + sub; result = result + org.substring(i + search.length()); org = result; } } while(i != -1); } } The output from this program is shown here: This is a test. This is, too. Thwas is a test. This is, too. Thwas was a test. This is, too. Thwas was a test. Thwas is, too. Thwas was a test. Thwas was, too. 2/3/201633Smitha N. Pai CSE Dept.

concat( ) String concat(String str) This method creates a new object that contains the invoking string with the contents of str appended to the end. concat( ) performs the same function as +. String s1 = "one"; String s2 = s1.concat("two"); Puts the string “onetwo” into s2. It generates the same result as the following sequence: String s1 = "one"; String s2 = s1 + "two"; 2/3/201634Smitha N. Pai CSE Dept.

replace( ) The replace( ) method replaces all occurrences of one character in the invoking string with another character. It has the following general form: String replace(char original, char replacement) original specifies the character to be replaced by the character specified by replacement. The resulting string is returned. String s = "Hello".replace('l', 'w'); puts the string “Hewwo” into s. 2/3/201635Smitha N. Pai CSE Dept.

trim( ) The trim( ) method returns a copy of the invoking string from which any leading and trailing whitespace has been removed. It has this general form: String trim( ) String s = " Hello World ".trim(); This puts the string “Hello World” into s. 2/3/201636Smitha N. Pai CSE Dept.

Changing the Case of Characters Within a String The method toLowerCase( ) converts all the characters in a string from uppercase to lowercase. The toUpperCase( ) method converts all the characters in a string from lowercase to uppercase. Nonalphabetical characters, such as digits, are unaffected. String toLowerCase( ) String toUpperCase( ) Both methods return a String object that contains the uppercase or lowercase equivalent of the invoking String. 2/3/201637Smitha N. Pai CSE Dept.

import java.util.*; public class CurrentTime{ public static void main(String[] args){ Calendar calendar = new GregorianCalendar(); String am_pm; int hour = calendar.get(Calendar.HOUR); int minute = calendar.get(Calendar.MINUTE); int second = calendar.get(Calendar.SECOND); if(calendar.get(Calendar.AM_PM) == 0) am_pm = "AM"; else am_pm = "PM"; System.out.println("Current Time : " + hour + ":" + minute + ":" + second + " " + am_pm); } } 2/3/201638Smitha N. Pai CSE Dept.

import java.util.Calendar; import java.text.SimpleDateFormat; public class DateUtils { public static final String DATE_FORMAT_NOW = "yyyy-MM-dd HH:mm:ss"; public static String now() { Calendar cal = Calendar.getInstance(); SimpleDateFormat sdf = new SimpleDateFormat(DATE_FORMAT_NOW); return sdf.format(cal.getTime()); } public static void main(String arg[]) { System.out.println("Now : " + DateUtils.now()); } } 2/3/2016Smitha N. Pai CSE Dept.39

import java.util.Calendar; import java.text.SimpleDateFormat; public class DateUtils { public static String now(String dateFormat) { Calendar cal = Calendar.getInstance(); SimpleDateFormat sdf = new SimpleDateFormat(dateFormat); return sdf.format(cal.getTime()); } public static void main(String arg[]) { System.out.println(DateUtils.now("dd MMMMM yyyy")); System.out.println(DateUtils.now("yyyyMMdd")); System.out.println(DateUtils.now("dd.MM.yy")); System.out.println(DateUtils.now("MM/dd/yy")); System.out.println(DateUtils.now ("yyyy.MM.dd G 'at' hh:mm:ss z")); System.out.println(DateUtils.now("EEE, MMM d, ''yy")); 2/3/2016Smitha N. Pai CSE Dept.40

System.out.println(DateUtils.now("h:mm a")); System.out.println(DateUtils.now("H:mm:ss:SSS")); System.out.println(DateUtils.now("K:mm a,z")); System.out.println(DateUtils.now("yyyy.MMMMM.dd GGG hh:mm aaa")); } } import java.util.Date; class DateDemo { public static void main(String args[]) { // Instantiate a Date object Date date = new Date(); // display time and date //using toString() System.out.println(date.toString()); } } 2/3/2016Smitha N. Pai CSE Dept.41

// Demonstrate GregorianCalendar import java.util.*; class GregorianCalendarDemo { public static void main(String args[]) { String months[] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"}; int year; // Create a Gregorian calendar initialized // with the current date and time in the // default locale and timezone. GregorianCalendar gcalendar = new GregorianCalendar(); // Display current time and date information.

System.out.print("Date: "); System.out.print(months[gcalendar.get(Calendar.MONT H)]); System.out.print(" " + gcalendar.get(Calendar.DATE) + " "); System.out.println(year = gcalendar.get(Calendar.YEAR)); System.out.print("Time: "); System.out.print(gcalendar.get(Calendar.HOUR) + ":"); System.out.print(gcalendar.get(Calendar.MINUTE) + ":"); System.out.println(gcalendar.get(Calendar.SECOND)); // Test if the current year is a leap year if(gcalendar.isLeapYear(year)) { System.out.println("The current year is a leap year"); }

else { System.out.println("The current year is not a leap year"); } Sample output is shown here: Date: Jan Time: 11:25:27 The current year is not a leap year