SlideShare a Scribd company logo
C# String Theory

                                 Dr.Haitham A. El-Ghareeb

                                  Information Systems Department
                           Faculty of Computers and Information Sciences
                                        Mansoura University
                                       helghareeb@gmail.com


                                        October 7, 2012




Dr.Haitham A. El-Ghareeb (CIS)     Data Structures and Algorithms - 2012   October 7, 2012   1 / 47
Special Thanks GoTo
     en.csharp-online.net
     msdn.microsoft.com
     www.codeproject.com
     blogs.msdn.com




Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   2 / 47
Objectives
By the end of this lecture, you shall be able to:
  1   Tell the difference between string and String and String Builder
  2   Capable of using String as the most famous Collection
  3   Aware of the different String Methods
  4   Be familiar with the importance of Pattern Matching and Regular
      Expression




 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   3 / 47
C# Strings




Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   4 / 47
C# Strings
     In C#, a string is a sequential collection of Unicode characters that
     represents text




Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   4 / 47
C# Strings
     In C#, a string is a sequential collection of Unicode characters that
     represents text
     a String object is a sequential collection of System.Char objects that
     represents a string.




Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   4 / 47
C# Strings
     In C#, a string is a sequential collection of Unicode characters that
     represents text
     a String object is a sequential collection of System.Char objects that
     represents a string.
     A C# string has several properties which are critical to understanding
     how to use them.




Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   4 / 47
string is a Reference Type
      A common misconception is that a C# string is a value type.
      In many situations it does act a bit like a value type.
      It is-in fact-a normal reference type to an object of type
      System.String.




 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   5 / 47
string is immutable
      Once created, the data value in a string object can never be changed:
      it is immutable (read-only)
      Methods that appear to modify a String object-in fact-return a new
      String object containing the modification.
      To modify the actual contents of a string-like object, the
      System.Text.StringBuilder class can be used.




 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   6 / 47
string may contain nulls
      The String methods will handle null characters in string values
      however, many classes-e.g. Windows Forms classes-may consider the
      string terminated at the first null.




 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   7 / 47
string versus String
      In the .NET framework, string is simply an alias for the Common
      Type System (CTS) System.String class
      String class represents a sequence of characters.
      string is one of two predefined C# reference types: The other is
      object.
      Use them interchangeably in your code.

      String x = string . Copy ( ” x ” ) ;
      string y = String . Copy ( ” y ” ) ;




 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   8 / 47
C# String Literals
      Contiguous sequence of zero or more characters enclosed in double
      quotation marks (”)
      representing string data, rather than a reference to string data.
      A string literal is a literal of type string hard-coded in your program.
      There are two methods of representing string literals-literal (quoted)
      and verbatim ( -quoted).
      The literal method requires certain characters such as quotation
      marks (”) and whitespace to be escaped-that is, preceded by the
      backslash escape character.
      On the other hand, the verbatim method accepts any
      characters-except quotation marks-including whitespace without
      escaping.



 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   9 / 47
String Class vs. String Object
      The String class represents textual data, i.e., a series of Unicode
      characters;
      String object is actually a sequential collection of System.Char
      objects.
      The value of the char is the content of the collection
      The value is immutable.




 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   10 / 47
String Fields and Properties
      Empty field: String.Empty is a read-only field which represents the
      empty string.
      Chars property: returns the character at a specified character position
      in the instance.
      Length property: returns the number of characters in this instance.




 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   11 / 47
String Operators
      String assignment: Strings can be assigned new values using either of
      these assignment operators: =, +=
      String index: The [ ] operator can be used to access individual
      characters in a string like this: char letter = string1[5];
      String concatenation: strings can be concatenated using the plus (+)
      operator, or String.Concat




 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   12 / 47
String Operators
      String overloads the equality operators: Normally, the == operator
      calls the Equals method which compares the pointer values found in
      the reference variables for equality. This tests whether they point to
      the same object.

      string string1 = ” v a l u e ” ;
      Object string2 = ” v a l u e ” ;
      i f ( string1 == string2 )                      // compares references
      {
          Console . WriteLine ( ”==” ) ;              // comparison is true
      }




 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   13 / 47
String Manipulation
      The String class contains many public methods which can be used to
      manipulate strings.
      The most frequently useful of them will be discussed here.
      There are two types of string manipulation methods:
              String instance methods are called via a string object, e.g.
              string1.Equals(string2).
              String static methods-or class methods-are called via the String class,
              e.g. String.ReferenceEquals (string1, string2).




 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   14 / 47
String instance methods
     CompareTo
     CopyTo
     EndsWith
     Equals
     GetEnumerator
     IndexOf
     IndexOfAny
     Insert
     LastIndexOf
     LastIndexOfAny
     PadLeft
     PadRight


Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   15 / 47
String instance methods (cont.)
      Remove
      Replace
      Split
      StartsWith
      Substring
      ToCharArray
      ToLower
      ToUpper
      Trim
      TrimEnd
      TrimStart



 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   16 / 47
String static methods
      Compare
      CompareOrdinal
      Concat
      Copy
      Format
      Join
      ReferenceEquals




 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   17 / 47
StringBuilder Class
      Represents a mutable string of characters.
      This class cannot be inherited.
      Use the StringBuilder class whenever you will be doing a great deal of
      string manipulation. This will be speedier and save memory in most
      cases.




 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   18 / 47
StringBuilder Remarks
     This class represents a string-like object whose value is a mutable
     sequence of characters.
     The value is said to be mutable because it can be modified after
     creation by appending, removing, replacing, or inserting characters.
     Most of the methods that modify an instance of this class return a
     reference to that same instance, and you can call a method or
     property on the reference.
     This can be convenient if you want to write a single statement that
     chains successive operations.




Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   19 / 47
StringBuilder Remarks (cont.)
      The capacity of a StringBuilder instance is the maximum number of
      characters the instance can store at any given time.
      The capacity is greater than, or equal to, the length of the string
      representation of the value of the instance.
      The capacity can be increased or decreased with the Capacity
      property or EnsureCapacity method, but it cannot be less than the
      value of the Length property.
      If you don’t specify capacity or maximum capacity when you initialize
      an instance of StringBuilder, implementation-specific default values
      are used.




 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   20 / 47
StringBuilder Functionality
      The current size of a StringBuilder object is defined by its Length
      property. You can access the characters in the value of a StringBuilder
      object by using the Chars property. Index positions start from zero.
      The StringBuilder class includes methods that can reduce the size of
      the current instance. The Clear method removes all characters and
      sets the Length property to zero. The Remove method deletes a
      range of characters.
      The StringBuilder class also includes methods that can expand the
      current instance. The Append and AppendLine methods add data to
      the end of the StringBuilder object, and the Insert method inserts
      data at a specified character position in the current StringBuilder
      object. The AppendFormat method uses the composite formatting
      feature to add formatted text to the end of a StringBuilder object.



 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   21 / 47
StringBuilder Class Functionality (cont.)
      The Replace method replaces all occurrences of a character or a string
      in the entire StringBuilder object or in a particular character range.
      You must convert the StringBuilder object to a String object before
      you can pass the string represented by the StringBuilder object to a
      method that has a String parameter or display it in the user interface.
      You perform this conversion by calling the ToString method.




 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   22 / 47
StringBuilder Performance Considerations
      A String object concatenation operation always creates a new object
      from the existing string and the new data.
      A StringBuilder object maintains a buffer to accommodate the
      concatenation of new data.
      New data is appended to the buffer if room is available; otherwise, a
      new, larger buffer is allocated, data from the original buffer is copied
      to the new buffer, and the new data is then appended to the new
      buffer.
      The performance of a concatenation operation for a String or
      StringBuilder object depends on the frequency of memory allocations.




 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   23 / 47
StringBuilder Performance Considerations
      A String concatenation operation always allocates memory, whereas a
      StringBuilder concatenation operation allocates memory only if the
      StringBuilder object buffer is too small to accommodate the new data.
      Use the String class if you are concatenating a fixed number of String
      objects. In that case, the compiler may even combine individual
      concatenation operations into a single operation.
      Use a StringBuilder object if you are concatenating an arbitrary
      number of strings; for example, if you’re using a loop to concatenate
      a random number of strings of user input.




 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   24 / 47
StringBuilder Memory Allocation
     The default capacity for this implementation is 16, and the default
     maximum capacity is Int32.MaxValue.
     A StringBuilder object can allocate more memory to store characters
     when the value of an instance is enlarged, and the capacity is
     adjusted accordingly.
     Append, AppendFormat, EnsureCapacity, Insert, and Replace
     methods can enlarge the value of an instance.
     The amount of memory allocated is implementation-specific, and an
     exception (either ArgumentOutOfRangeException or
     OutOfMemoryException) is thrown if the amount of memory required
     is greater than the maximum capacity.




Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   25 / 47
StringBuilder Class Constructors
      StringBuilder(): Initializes a new instance of the StringBuilder class.
      StringBuilder(Int32): Initializes a new instance of the StringBuilder
      class using the specified capacity.
      StringBuilder(String): Initializes a new instance of the StringBuilder
      class using the specified string.
      StringBuilder(Int32, Int32): Initializes a new instance of the
      StringBuilder class that starts with a specified capacity and can grow
      to a specified maximum.
      StringBuilder(String, Int32): Initializes a new instance of the
      StringBuilder class using the specified string and capacity.
      StringBuilder(String, Int32, Int32, Int32): Initializes a new instance of
      the StringBuilder class from the specified substring and capacity.



 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   26 / 47
StringBuilder Class Properties
      Capacity: Gets or sets the maximum number of characters that can
      be contained in the memory allocated by the current instance.
      Chars: Gets or sets the character at the specified character position in
      this instance.
      Length: Gets or sets the length of the current StringBuilder object.
      MaxCapacity: Gets the maximum capacity of this instance.




 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   27 / 47
StringBuilder Methods
     Append(Boolean): Appends the string representation of a specified
     Boolean value to this instance.
     Append(Byte): Appends the string representation of a specified 8-bit
     unsigned integer to this instance.
     Append(Char): Appends the string representation of a specified
     Unicode character to this instance.
     Append(Char[]): Appends the string representation of the Unicode
     characters in a specified array to this instance.
     Append(Decimal): Appends the string representation of a specified
     decimal number to this instance.




Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   28 / 47
StringBuilder Methods (cont.)
      Append(Double): Appends the string representation of a specified
      double-precision floating-point number to this instance.
      Append(Object): Appends the string representation of a specified
      object to this instance.
      Append(SByte): Appends the string representation of a specified
      8-bit signed integer to this instance.
      Append(Single): Appends the string representation of a specified
      single-precision floating-point number to this instance.
      Append(String): Appends a copy of the specified string to this
      instance.




 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   29 / 47
StringBuilder Methods (cont.)
      Append(UInt16): Appends the string representation of a specified
      16-bit unsigned integer to this instance.
      Append(UInt32): Appends the string representation of a specified
      32-bit unsigned integer to this instance.
      Append(UInt64): Appends the string representation of a specified
      64-bit unsigned integer to this instance.
      Append(Char, Int32): Appends a specified number of copies of the
      string representation of a Unicode character to this instance.
      Append(Char[], Int32, Int32):Appends the string representation of a
      specified subarray of Unicode characters to this instance.




 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   30 / 47
StringBuilder Methods (cont.)
      Append(String, Int32, Int32): Appends a copy of a specified substring
      to this instance.
      AppendFormat(String, Object): Appends the string returned by
      processing a composite format string, which contains zero or more
      format items, to this instance. Each format item is replaced by the
      string representation of a single argument.
      AppendFormat(String, Object[]): Appends the string returned by
      processing a composite format string, which contains zero or more
      format items, to this instance. Each format item is replaced by the
      string representation of a corresponding argument in a parameter
      array.
      AppendFormat(IFormatProvider, String, Object[]): Appends the
      string returned by processing a composite format string, which
      contains zero or more format items, to this instance. Each format
      item is replaced by the string representation of a corresponding
      argument in a parameter array using a specified format provider.
 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   31 / 47
StringBuilder Methods (cont.)
      AppendFormat(String, Object, Object): Appends the string returned
      by processing a composite format string, which contains zero or more
      format items, to this instance. Each format item is replaced by the
      string representation of either of two arguments.
      AppendFormat(String, Object, Object, Object): Appends the string
      returned by processing a composite format string, which contains zero
      or more format items, to this instance. Each format item is replaced
      by the string representation of either of three arguments.
      AppendLine(): Appends the default line terminator to the end of the
      current StringBuilder object.
      AppendLine(String): Appends a copy of the specified string followed
      by the default line terminator to the end of the current StringBuilder
      object.



 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   32 / 47
StringBuilder Methods (cont.)
      Clear: Removes all characters from the current StringBuilder instance.
      CopyTo: Copies the characters from a specified segment of this
      instance to a specified segment of a destination Char array.
      EnsureCapacity: Ensures that the capacity of this instance of
      StringBuilder is at least the specified value.
      Equals(Object): Determines whether the specified object is equal to
      the current object. (Inherited from Object.)
      Equals(StringBuilder): Returns a value indicating whether this
      instance is equal to a specified object.
      Finalize: Allows an object to try to free resources and perform other
      cleanup operations before it is reclaimed by garbage collection.
      (Inherited from Object.)



 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   33 / 47
StringBuilder Methods (cont.)
      GetHashCode: Serves as a hash function for a particular type.
      (Inherited from Object.)
      GetType: Gets the Type of the current instance. (Inherited from
      Object.)
      Insert(Int32, Boolean): Inserts the string representation of a Boolean
      value into this instance at the specified character position.
      Insert(Int32, Byte): Inserts the string representation of a specified
      8-bit unsigned integer into this instance at the specified character
      position.




 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   34 / 47
StringBuilder Methods (cont.)
      Insert(Int32, Char): Inserts the string representation of a specified
      Unicode character into this instance at the specified character
      position.
      Insert(Int32, Char[]): Inserts the string representation of a specified
      array of Unicode characters into this instance at the specified
      character position.
      Insert(Int32, Decimal): Inserts the string representation of a decimal
      number into this instance at the specified character position.
      Insert(Int32, Double): Inserts the string representation of a
      double-precision floating-point number into this instance at the
      specified character position.




 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   35 / 47
StringBuilder Methods (cont.)
      Insert(Int32, Int16): Inserts the string representation of a specified
      16-bit signed integer into this instance at the specified character
      position.
      Insert(Int32, Int32): Inserts the string representation of a specified
      32-bit signed integer into this instance at the specified character
      position.
      Insert(Int32, Int64): Inserts the string representation of a 64-bit
      signed integer into this instance at the specified character position.
      Insert(Int32, Object): Inserts the string representation of an object
      into this instance at the specified character position.




 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   36 / 47
StringBuilder Methods (cont.)
      Insert(Int32, SByte): Inserts the string representation of a specified
      8-bit signed integer into this instance at the specified character
      position.
      Insert(Int32, Single): Inserts the string representation of a
      single-precision floating point number into this instance at the
      specified character position.
      Insert(Int32, String): Inserts a string into this instance at the
      specified character position.
      Insert(Int32, UInt16): Inserts the string representation of a 16-bit
      unsigned integer into this instance at the specified character position.




 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   37 / 47
StringBuilder Methods (cont.)
      Insert(Int32, UInt32): Inserts the string representation of a 32-bit
      unsigned integer into this instance at the specified character position.
      Insert(Int32, UInt64): Inserts the string representation of a 64-bit
      unsigned integer into this instance at the specified character position.
      Insert(Int32, String, Int32): Inserts one or more copies of a specified
      string into this instance at the specified character position.




 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   38 / 47
StringBuilder Methods (cont.)
      Insert(Int32, Char[], Int32, Int32): Inserts the string representation of
      a specified subarray of Unicode characters into this instance at the
      specified character position.
      MemberwiseClone: Creates a shallow copy of the current Object.
      (Inherited from Object.)
      Remove: Removes the specified range of characters from this
      instance.
      Replace(Char, Char): Replaces all occurrences of a specified character
      in this instance with another specified character.
      Replace(String, String): Replaces all occurrences of a specified string
      in this instance with another specified string.




 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   39 / 47
StringBuilder Methods (cont.)
      Replace(Char, Char, Int32, Int32): Replaces, within a substring of this
      instance, all occurrences of a specified character with another
      specified character.
      Replace(String, String, Int32, Int32): Replaces, within a substring of
      this instance, all occurrences of a specified string with another
      specified string.
      ToString(): Converts the value of this instance to a String.
      (Overrides Object.ToString().)
      ToString(Int32, Int32): Converts the value of a substring of this
      instance to a String.




 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   40 / 47
C# String Optimization
     The C# String class is designed to minimize unnecessary memory
     allocations.
     In the process, String operations can provide some unexpected results.
     In the first case, two string variablessiteA, siteBare declared. The first
     variable is assigned to a string literal (”C# Online.NET”).
     The second variable is assigned to the first string variable.




Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   41 / 47
Intern Pool
The intern pool is a list of strings which are currently referenced in your
C# application. When a new string is created, then the intern table is
checked first to see if that exact string literal already exists in the pool. If
it does already exist, then both string variables will reference the same
string literal at the same memory location in the intern table. Therefore,
only a single copy of a unique string literal is ever created.




 Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   42 / 47
C# Best Practices
     Use ”String” to refer specifically to the String class.
     Use ”string” when referring to an object of the String class.
     Avoid using the @ symbol in order to use C# keywords as identifiers.
     It can obfuscate the code making it difficult to read and is just plain,
     poor practice.
     Use the StringBuilder class whenever you will be doing a great deal of
     string manipulation. This will be speedier and save memory in most
     cases.




Dr.Haitham A. El-Ghareeb (CIS)   Data Structures and Algorithms - 2012   October 7, 2012   43 / 47

More Related Content

What's hot (20)

PPTX
13. Indexing MTrees - Data Structures using C++ by Varsha Patil
widespreadpromotion
 
PPTX
5. Queue - Data Structures using C++ by Varsha Patil
widespreadpromotion
 
PPTX
14. Files - Data Structures using C++ by Varsha Patil
widespreadpromotion
 
PPTX
4. Recursion - Data Structures using C++ by Varsha Patil
widespreadpromotion
 
PPTX
16. Algo analysis & Design - Data Structures using C++ by Varsha Patil
widespreadpromotion
 
PPTX
6. Linked list - Data Structures using C++ by Varsha Patil
widespreadpromotion
 
PDF
Semantics2018 Zhang,Petrak,Maynard: Adapted TextRank for Term Extraction: A G...
Johann Petrak
 
PDF
10 Algorithms in data mining
George Ang
 
PDF
Doctoral Thesis Dissertation 2014-03-20 @PoliMi
Davide Chicco
 
PPT
Cs583 info-retrieval
Borseshweta
 
PPTX
Session 16 - Collections - Sorting, Comparing Basics
PawanMM
 
PDF
Searching and Sorting Techniques in Data Structure
Balwant Gorad
 
PDF
What's next in Julia
Jiahao Chen
 
PPTX
Relational algebra
Dr. C.V. Suresh Babu
 
PDF
Data structures list
Vijaya Kalavakonda
 
PPTX
Ontologising the Health Level Seven (HL7) Standard
Ratnesh Sahay
 
PPT
Query Translation for Data Sources with Heterogeneous Content Semantics
Jie Bao
 
PPTX
Image translated data analysis
YOUNGSEOPKIM
 
PDF
A simple web-based interface for advanced SNOMED CT queries
Snow Owl
 
PDF
Top-K Dominating Queries on Incomplete Data with Priorities
ijtsrd
 
13. Indexing MTrees - Data Structures using C++ by Varsha Patil
widespreadpromotion
 
5. Queue - Data Structures using C++ by Varsha Patil
widespreadpromotion
 
14. Files - Data Structures using C++ by Varsha Patil
widespreadpromotion
 
4. Recursion - Data Structures using C++ by Varsha Patil
widespreadpromotion
 
16. Algo analysis & Design - Data Structures using C++ by Varsha Patil
widespreadpromotion
 
6. Linked list - Data Structures using C++ by Varsha Patil
widespreadpromotion
 
Semantics2018 Zhang,Petrak,Maynard: Adapted TextRank for Term Extraction: A G...
Johann Petrak
 
10 Algorithms in data mining
George Ang
 
Doctoral Thesis Dissertation 2014-03-20 @PoliMi
Davide Chicco
 
Cs583 info-retrieval
Borseshweta
 
Session 16 - Collections - Sorting, Comparing Basics
PawanMM
 
Searching and Sorting Techniques in Data Structure
Balwant Gorad
 
What's next in Julia
Jiahao Chen
 
Relational algebra
Dr. C.V. Suresh Babu
 
Data structures list
Vijaya Kalavakonda
 
Ontologising the Health Level Seven (HL7) Standard
Ratnesh Sahay
 
Query Translation for Data Sources with Heterogeneous Content Semantics
Jie Bao
 
Image translated data analysis
YOUNGSEOPKIM
 
A simple web-based interface for advanced SNOMED CT queries
Snow Owl
 
Top-K Dominating Queries on Incomplete Data with Priorities
ijtsrd
 

Similar to DSA - Lecture 04 (20)

PDF
Module 6 - String Manipulation.pdf
MegMeg17
 
PPTX
Strings in c#
Dr.Neeraj Kumar Pandey
 
PDF
Java R20 - UNIT-5.pdf
Pamarthi Kumar
 
DOCX
Java R20 - UNIT-5.docx
Pamarthi Kumar
 
PPTX
C# String
Raghuveer Guthikonda
 
PPTX
Strings in Java
Abhilash Nair
 
PPTX
Java String
SATYAM SHRIVASTAV
 
PPTX
OCA Java SE 8 Exam Chapter 3 Core Java APIs
İbrahim Kürce
 
PPTX
Core C# Programming Constructs, Part 1
Vahid Farahmandian
 
PPTX
String in JAVA --------------------------
2003sayanch
 
PPT
Strings Arrays
phanleson
 
PPTX
String Method.pptx
Dreime Estandarte
 
PPT
13 Strings and text processing
maznabili
 
PPTX
Java string handling
GaneshKumarKanthiah
 
PDF
C# chap 10
Shehrevar Davierwala
 
PDF
LectureNotes-04-DSA
Haitham El-Ghareeb
 
PPTX
String in .net
Larry Nung
 
PDF
M251_Meeting 2_updated_2.pdf(M251_Meeting 2_updated_2.pdf)
hossamghareb681
 
PPT
Strings in javamnjn ijnjun oinoin oinoi .ppt
ShahidSultan24
 
PPTX
13string in c#
Sireesh K
 
Module 6 - String Manipulation.pdf
MegMeg17
 
Strings in c#
Dr.Neeraj Kumar Pandey
 
Java R20 - UNIT-5.pdf
Pamarthi Kumar
 
Java R20 - UNIT-5.docx
Pamarthi Kumar
 
Strings in Java
Abhilash Nair
 
Java String
SATYAM SHRIVASTAV
 
OCA Java SE 8 Exam Chapter 3 Core Java APIs
İbrahim Kürce
 
Core C# Programming Constructs, Part 1
Vahid Farahmandian
 
String in JAVA --------------------------
2003sayanch
 
Strings Arrays
phanleson
 
String Method.pptx
Dreime Estandarte
 
13 Strings and text processing
maznabili
 
Java string handling
GaneshKumarKanthiah
 
LectureNotes-04-DSA
Haitham El-Ghareeb
 
String in .net
Larry Nung
 
M251_Meeting 2_updated_2.pdf(M251_Meeting 2_updated_2.pdf)
hossamghareb681
 
Strings in javamnjn ijnjun oinoin oinoi .ppt
ShahidSultan24
 
13string in c#
Sireesh K
 
Ad

More from Haitham El-Ghareeb (20)

PDF
مختصر وحدة التعلم الذاتي 2015
Haitham El-Ghareeb
 
PDF
وحدة التعلم الذاتي 2015
Haitham El-Ghareeb
 
PDF
NoSQL Databases, Not just a Buzzword
Haitham El-Ghareeb
 
PDF
EMC Academic Alliance Presentation
Haitham El-Ghareeb
 
PDF
DSA - 2012 - Conclusion
Haitham El-Ghareeb
 
PDF
Data Structures - Lecture 8 - Study Notes
Haitham El-Ghareeb
 
PDF
LectureNotes-06-DSA
Haitham El-Ghareeb
 
PDF
LectureNotes-05-DSA
Haitham El-Ghareeb
 
PDF
LectureNotes-03-DSA
Haitham El-Ghareeb
 
PDF
LectureNotes-02-DSA
Haitham El-Ghareeb
 
PDF
LectureNotes-01-DSA
Haitham El-Ghareeb
 
PDF
Learn Latex
Haitham El-Ghareeb
 
PDF
Research Methodologies - Lecture 02
Haitham El-Ghareeb
 
PDF
DSA - Lecture 03
Haitham El-Ghareeb
 
PPTX
Ph.D. Registeration seminar
Haitham El-Ghareeb
 
PDF
Lecture 01 - Research Methods
Haitham El-Ghareeb
 
PDF
DSA-2012-Lect00
Haitham El-Ghareeb
 
PPTX
Python Tutorial Part 2
Haitham El-Ghareeb
 
PPTX
Python Tutorial Part 1
Haitham El-Ghareeb
 
PPTX
Mozilla B2G
Haitham El-Ghareeb
 
مختصر وحدة التعلم الذاتي 2015
Haitham El-Ghareeb
 
وحدة التعلم الذاتي 2015
Haitham El-Ghareeb
 
NoSQL Databases, Not just a Buzzword
Haitham El-Ghareeb
 
EMC Academic Alliance Presentation
Haitham El-Ghareeb
 
DSA - 2012 - Conclusion
Haitham El-Ghareeb
 
Data Structures - Lecture 8 - Study Notes
Haitham El-Ghareeb
 
LectureNotes-06-DSA
Haitham El-Ghareeb
 
LectureNotes-05-DSA
Haitham El-Ghareeb
 
LectureNotes-03-DSA
Haitham El-Ghareeb
 
LectureNotes-02-DSA
Haitham El-Ghareeb
 
LectureNotes-01-DSA
Haitham El-Ghareeb
 
Learn Latex
Haitham El-Ghareeb
 
Research Methodologies - Lecture 02
Haitham El-Ghareeb
 
DSA - Lecture 03
Haitham El-Ghareeb
 
Ph.D. Registeration seminar
Haitham El-Ghareeb
 
Lecture 01 - Research Methods
Haitham El-Ghareeb
 
DSA-2012-Lect00
Haitham El-Ghareeb
 
Python Tutorial Part 2
Haitham El-Ghareeb
 
Python Tutorial Part 1
Haitham El-Ghareeb
 
Mozilla B2G
Haitham El-Ghareeb
 
Ad

DSA - Lecture 04

  • 1. C# String Theory Dr.Haitham A. El-Ghareeb Information Systems Department Faculty of Computers and Information Sciences Mansoura University [email protected] October 7, 2012 Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 1 / 47
  • 2. Special Thanks GoTo en.csharp-online.net msdn.microsoft.com www.codeproject.com blogs.msdn.com Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 2 / 47
  • 3. Objectives By the end of this lecture, you shall be able to: 1 Tell the difference between string and String and String Builder 2 Capable of using String as the most famous Collection 3 Aware of the different String Methods 4 Be familiar with the importance of Pattern Matching and Regular Expression Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 3 / 47
  • 4. C# Strings Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 4 / 47
  • 5. C# Strings In C#, a string is a sequential collection of Unicode characters that represents text Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 4 / 47
  • 6. C# Strings In C#, a string is a sequential collection of Unicode characters that represents text a String object is a sequential collection of System.Char objects that represents a string. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 4 / 47
  • 7. C# Strings In C#, a string is a sequential collection of Unicode characters that represents text a String object is a sequential collection of System.Char objects that represents a string. A C# string has several properties which are critical to understanding how to use them. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 4 / 47
  • 8. string is a Reference Type A common misconception is that a C# string is a value type. In many situations it does act a bit like a value type. It is-in fact-a normal reference type to an object of type System.String. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 5 / 47
  • 9. string is immutable Once created, the data value in a string object can never be changed: it is immutable (read-only) Methods that appear to modify a String object-in fact-return a new String object containing the modification. To modify the actual contents of a string-like object, the System.Text.StringBuilder class can be used. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 6 / 47
  • 10. string may contain nulls The String methods will handle null characters in string values however, many classes-e.g. Windows Forms classes-may consider the string terminated at the first null. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 7 / 47
  • 11. string versus String In the .NET framework, string is simply an alias for the Common Type System (CTS) System.String class String class represents a sequence of characters. string is one of two predefined C# reference types: The other is object. Use them interchangeably in your code. String x = string . Copy ( ” x ” ) ; string y = String . Copy ( ” y ” ) ; Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 8 / 47
  • 12. C# String Literals Contiguous sequence of zero or more characters enclosed in double quotation marks (”) representing string data, rather than a reference to string data. A string literal is a literal of type string hard-coded in your program. There are two methods of representing string literals-literal (quoted) and verbatim ( -quoted). The literal method requires certain characters such as quotation marks (”) and whitespace to be escaped-that is, preceded by the backslash escape character. On the other hand, the verbatim method accepts any characters-except quotation marks-including whitespace without escaping. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 9 / 47
  • 13. String Class vs. String Object The String class represents textual data, i.e., a series of Unicode characters; String object is actually a sequential collection of System.Char objects. The value of the char is the content of the collection The value is immutable. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 10 / 47
  • 14. String Fields and Properties Empty field: String.Empty is a read-only field which represents the empty string. Chars property: returns the character at a specified character position in the instance. Length property: returns the number of characters in this instance. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 11 / 47
  • 15. String Operators String assignment: Strings can be assigned new values using either of these assignment operators: =, += String index: The [ ] operator can be used to access individual characters in a string like this: char letter = string1[5]; String concatenation: strings can be concatenated using the plus (+) operator, or String.Concat Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 12 / 47
  • 16. String Operators String overloads the equality operators: Normally, the == operator calls the Equals method which compares the pointer values found in the reference variables for equality. This tests whether they point to the same object. string string1 = ” v a l u e ” ; Object string2 = ” v a l u e ” ; i f ( string1 == string2 ) // compares references { Console . WriteLine ( ”==” ) ; // comparison is true } Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 13 / 47
  • 17. String Manipulation The String class contains many public methods which can be used to manipulate strings. The most frequently useful of them will be discussed here. There are two types of string manipulation methods: String instance methods are called via a string object, e.g. string1.Equals(string2). String static methods-or class methods-are called via the String class, e.g. String.ReferenceEquals (string1, string2). Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 14 / 47
  • 18. String instance methods CompareTo CopyTo EndsWith Equals GetEnumerator IndexOf IndexOfAny Insert LastIndexOf LastIndexOfAny PadLeft PadRight Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 15 / 47
  • 19. String instance methods (cont.) Remove Replace Split StartsWith Substring ToCharArray ToLower ToUpper Trim TrimEnd TrimStart Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 16 / 47
  • 20. String static methods Compare CompareOrdinal Concat Copy Format Join ReferenceEquals Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 17 / 47
  • 21. StringBuilder Class Represents a mutable string of characters. This class cannot be inherited. Use the StringBuilder class whenever you will be doing a great deal of string manipulation. This will be speedier and save memory in most cases. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 18 / 47
  • 22. StringBuilder Remarks This class represents a string-like object whose value is a mutable sequence of characters. The value is said to be mutable because it can be modified after creation by appending, removing, replacing, or inserting characters. Most of the methods that modify an instance of this class return a reference to that same instance, and you can call a method or property on the reference. This can be convenient if you want to write a single statement that chains successive operations. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 19 / 47
  • 23. StringBuilder Remarks (cont.) The capacity of a StringBuilder instance is the maximum number of characters the instance can store at any given time. The capacity is greater than, or equal to, the length of the string representation of the value of the instance. The capacity can be increased or decreased with the Capacity property or EnsureCapacity method, but it cannot be less than the value of the Length property. If you don’t specify capacity or maximum capacity when you initialize an instance of StringBuilder, implementation-specific default values are used. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 20 / 47
  • 24. StringBuilder Functionality The current size of a StringBuilder object is defined by its Length property. You can access the characters in the value of a StringBuilder object by using the Chars property. Index positions start from zero. The StringBuilder class includes methods that can reduce the size of the current instance. The Clear method removes all characters and sets the Length property to zero. The Remove method deletes a range of characters. The StringBuilder class also includes methods that can expand the current instance. The Append and AppendLine methods add data to the end of the StringBuilder object, and the Insert method inserts data at a specified character position in the current StringBuilder object. The AppendFormat method uses the composite formatting feature to add formatted text to the end of a StringBuilder object. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 21 / 47
  • 25. StringBuilder Class Functionality (cont.) The Replace method replaces all occurrences of a character or a string in the entire StringBuilder object or in a particular character range. You must convert the StringBuilder object to a String object before you can pass the string represented by the StringBuilder object to a method that has a String parameter or display it in the user interface. You perform this conversion by calling the ToString method. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 22 / 47
  • 26. StringBuilder Performance Considerations A String object concatenation operation always creates a new object from the existing string and the new data. A StringBuilder object maintains a buffer to accommodate the concatenation of new data. New data is appended to the buffer if room is available; otherwise, a new, larger buffer is allocated, data from the original buffer is copied to the new buffer, and the new data is then appended to the new buffer. The performance of a concatenation operation for a String or StringBuilder object depends on the frequency of memory allocations. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 23 / 47
  • 27. StringBuilder Performance Considerations A String concatenation operation always allocates memory, whereas a StringBuilder concatenation operation allocates memory only if the StringBuilder object buffer is too small to accommodate the new data. Use the String class if you are concatenating a fixed number of String objects. In that case, the compiler may even combine individual concatenation operations into a single operation. Use a StringBuilder object if you are concatenating an arbitrary number of strings; for example, if you’re using a loop to concatenate a random number of strings of user input. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 24 / 47
  • 28. StringBuilder Memory Allocation The default capacity for this implementation is 16, and the default maximum capacity is Int32.MaxValue. A StringBuilder object can allocate more memory to store characters when the value of an instance is enlarged, and the capacity is adjusted accordingly. Append, AppendFormat, EnsureCapacity, Insert, and Replace methods can enlarge the value of an instance. The amount of memory allocated is implementation-specific, and an exception (either ArgumentOutOfRangeException or OutOfMemoryException) is thrown if the amount of memory required is greater than the maximum capacity. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 25 / 47
  • 29. StringBuilder Class Constructors StringBuilder(): Initializes a new instance of the StringBuilder class. StringBuilder(Int32): Initializes a new instance of the StringBuilder class using the specified capacity. StringBuilder(String): Initializes a new instance of the StringBuilder class using the specified string. StringBuilder(Int32, Int32): Initializes a new instance of the StringBuilder class that starts with a specified capacity and can grow to a specified maximum. StringBuilder(String, Int32): Initializes a new instance of the StringBuilder class using the specified string and capacity. StringBuilder(String, Int32, Int32, Int32): Initializes a new instance of the StringBuilder class from the specified substring and capacity. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 26 / 47
  • 30. StringBuilder Class Properties Capacity: Gets or sets the maximum number of characters that can be contained in the memory allocated by the current instance. Chars: Gets or sets the character at the specified character position in this instance. Length: Gets or sets the length of the current StringBuilder object. MaxCapacity: Gets the maximum capacity of this instance. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 27 / 47
  • 31. StringBuilder Methods Append(Boolean): Appends the string representation of a specified Boolean value to this instance. Append(Byte): Appends the string representation of a specified 8-bit unsigned integer to this instance. Append(Char): Appends the string representation of a specified Unicode character to this instance. Append(Char[]): Appends the string representation of the Unicode characters in a specified array to this instance. Append(Decimal): Appends the string representation of a specified decimal number to this instance. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 28 / 47
  • 32. StringBuilder Methods (cont.) Append(Double): Appends the string representation of a specified double-precision floating-point number to this instance. Append(Object): Appends the string representation of a specified object to this instance. Append(SByte): Appends the string representation of a specified 8-bit signed integer to this instance. Append(Single): Appends the string representation of a specified single-precision floating-point number to this instance. Append(String): Appends a copy of the specified string to this instance. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 29 / 47
  • 33. StringBuilder Methods (cont.) Append(UInt16): Appends the string representation of a specified 16-bit unsigned integer to this instance. Append(UInt32): Appends the string representation of a specified 32-bit unsigned integer to this instance. Append(UInt64): Appends the string representation of a specified 64-bit unsigned integer to this instance. Append(Char, Int32): Appends a specified number of copies of the string representation of a Unicode character to this instance. Append(Char[], Int32, Int32):Appends the string representation of a specified subarray of Unicode characters to this instance. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 30 / 47
  • 34. StringBuilder Methods (cont.) Append(String, Int32, Int32): Appends a copy of a specified substring to this instance. AppendFormat(String, Object): Appends the string returned by processing a composite format string, which contains zero or more format items, to this instance. Each format item is replaced by the string representation of a single argument. AppendFormat(String, Object[]): Appends the string returned by processing a composite format string, which contains zero or more format items, to this instance. Each format item is replaced by the string representation of a corresponding argument in a parameter array. AppendFormat(IFormatProvider, String, Object[]): Appends the string returned by processing a composite format string, which contains zero or more format items, to this instance. Each format item is replaced by the string representation of a corresponding argument in a parameter array using a specified format provider. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 31 / 47
  • 35. StringBuilder Methods (cont.) AppendFormat(String, Object, Object): Appends the string returned by processing a composite format string, which contains zero or more format items, to this instance. Each format item is replaced by the string representation of either of two arguments. AppendFormat(String, Object, Object, Object): Appends the string returned by processing a composite format string, which contains zero or more format items, to this instance. Each format item is replaced by the string representation of either of three arguments. AppendLine(): Appends the default line terminator to the end of the current StringBuilder object. AppendLine(String): Appends a copy of the specified string followed by the default line terminator to the end of the current StringBuilder object. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 32 / 47
  • 36. StringBuilder Methods (cont.) Clear: Removes all characters from the current StringBuilder instance. CopyTo: Copies the characters from a specified segment of this instance to a specified segment of a destination Char array. EnsureCapacity: Ensures that the capacity of this instance of StringBuilder is at least the specified value. Equals(Object): Determines whether the specified object is equal to the current object. (Inherited from Object.) Equals(StringBuilder): Returns a value indicating whether this instance is equal to a specified object. Finalize: Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 33 / 47
  • 37. StringBuilder Methods (cont.) GetHashCode: Serves as a hash function for a particular type. (Inherited from Object.) GetType: Gets the Type of the current instance. (Inherited from Object.) Insert(Int32, Boolean): Inserts the string representation of a Boolean value into this instance at the specified character position. Insert(Int32, Byte): Inserts the string representation of a specified 8-bit unsigned integer into this instance at the specified character position. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 34 / 47
  • 38. StringBuilder Methods (cont.) Insert(Int32, Char): Inserts the string representation of a specified Unicode character into this instance at the specified character position. Insert(Int32, Char[]): Inserts the string representation of a specified array of Unicode characters into this instance at the specified character position. Insert(Int32, Decimal): Inserts the string representation of a decimal number into this instance at the specified character position. Insert(Int32, Double): Inserts the string representation of a double-precision floating-point number into this instance at the specified character position. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 35 / 47
  • 39. StringBuilder Methods (cont.) Insert(Int32, Int16): Inserts the string representation of a specified 16-bit signed integer into this instance at the specified character position. Insert(Int32, Int32): Inserts the string representation of a specified 32-bit signed integer into this instance at the specified character position. Insert(Int32, Int64): Inserts the string representation of a 64-bit signed integer into this instance at the specified character position. Insert(Int32, Object): Inserts the string representation of an object into this instance at the specified character position. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 36 / 47
  • 40. StringBuilder Methods (cont.) Insert(Int32, SByte): Inserts the string representation of a specified 8-bit signed integer into this instance at the specified character position. Insert(Int32, Single): Inserts the string representation of a single-precision floating point number into this instance at the specified character position. Insert(Int32, String): Inserts a string into this instance at the specified character position. Insert(Int32, UInt16): Inserts the string representation of a 16-bit unsigned integer into this instance at the specified character position. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 37 / 47
  • 41. StringBuilder Methods (cont.) Insert(Int32, UInt32): Inserts the string representation of a 32-bit unsigned integer into this instance at the specified character position. Insert(Int32, UInt64): Inserts the string representation of a 64-bit unsigned integer into this instance at the specified character position. Insert(Int32, String, Int32): Inserts one or more copies of a specified string into this instance at the specified character position. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 38 / 47
  • 42. StringBuilder Methods (cont.) Insert(Int32, Char[], Int32, Int32): Inserts the string representation of a specified subarray of Unicode characters into this instance at the specified character position. MemberwiseClone: Creates a shallow copy of the current Object. (Inherited from Object.) Remove: Removes the specified range of characters from this instance. Replace(Char, Char): Replaces all occurrences of a specified character in this instance with another specified character. Replace(String, String): Replaces all occurrences of a specified string in this instance with another specified string. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 39 / 47
  • 43. StringBuilder Methods (cont.) Replace(Char, Char, Int32, Int32): Replaces, within a substring of this instance, all occurrences of a specified character with another specified character. Replace(String, String, Int32, Int32): Replaces, within a substring of this instance, all occurrences of a specified string with another specified string. ToString(): Converts the value of this instance to a String. (Overrides Object.ToString().) ToString(Int32, Int32): Converts the value of a substring of this instance to a String. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 40 / 47
  • 44. C# String Optimization The C# String class is designed to minimize unnecessary memory allocations. In the process, String operations can provide some unexpected results. In the first case, two string variablessiteA, siteBare declared. The first variable is assigned to a string literal (”C# Online.NET”). The second variable is assigned to the first string variable. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 41 / 47
  • 45. Intern Pool The intern pool is a list of strings which are currently referenced in your C# application. When a new string is created, then the intern table is checked first to see if that exact string literal already exists in the pool. If it does already exist, then both string variables will reference the same string literal at the same memory location in the intern table. Therefore, only a single copy of a unique string literal is ever created. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 42 / 47
  • 46. C# Best Practices Use ”String” to refer specifically to the String class. Use ”string” when referring to an object of the String class. Avoid using the @ symbol in order to use C# keywords as identifiers. It can obfuscate the code making it difficult to read and is just plain, poor practice. Use the StringBuilder class whenever you will be doing a great deal of string manipulation. This will be speedier and save memory in most cases. Dr.Haitham A. El-Ghareeb (CIS) Data Structures and Algorithms - 2012 October 7, 2012 43 / 47