Starting Out with Programming Logic and Design (5th Edition) (What's New in Computer Science)
Starting Out with Programming Logic and Design (5th Edition) (What's New in Computer Science)
5th Edition
ISBN: 9780134801155
Author: Tony Gaddis
Publisher: PEARSON
Question
Book Icon
Chapter 12, Problem 5SA
Program Plan Intro

Inserting or deleting characters in a string:

  • Library function or modules are provided by the programming languages to perform insert and deletion operations.

Inserting:

The pseudocode library modules that are used to insert the values is :

insert (string1,position,string2)

  • The above function will insert the “string 2” to the “string1” at the “position” specified.
  • “string1” and “string2” is string
  • “Position” is an integer.

Deleting:

The pseudocode library modules that are used to insert the values is

delete (string1,start,end)

  • The above function will delete the strings that are specified from the start to the end.
  • “Start” and “End” is integer that specifies the beginning position and end position.
  • “String” is string.

Example:

The below statement is used to delete the first three characters from the string “city”.

//deletes first three character in city

delete (city, 0, 2)

Explanation:

  • The above function will delete the strings present in the “city” variable that is specified from the position “0” to the position “2”.
  • The above function will delete the first three character of the “city” string.
  • On execution, the “city” will hold “ton” as its value.

Blurred answer
Students have asked these similar questions
IN C LANGUAGE CODE:Write a code snippet that can arrange the alphabets of a name entered by user in alternate cases.Note: Ignore white spaces. Input String:Timothy Olyphant  Output String :TiMoThY OLyPhAnT Input String: Olga Kurylenko Output string: OlGa KuRyLeNkO
Option #1: String Values in Reverse Order Assignment Instructions Write a Python function that will accept as input three string values from a user. The method will return to the user a concatenation of the string values in reverse order. The function is to be called from the main method. In the main method, prompt the user for the three strings.
= "welcome everybody" Dim str As String Dim str2 As String For i str2 &= str.Chars(i) & str.Substring(i, 3).StartsWith("e") str.Length 3 To 3 Step -4 %3D Next MsgBox(str2) oFalseeTruee True dfalserfalse false ofalseefalseetrue none

Chapter 12 Solutions

Starting Out with Programming Logic and Design (5th Edition) (What's New in Computer Science)

Knowledge Booster
Background pattern image
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
Microsoft Visual C#
Computer Science
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Cengage Learning,
Text book image
Programming Logic & Design Comprehensive
Computer Science
ISBN:9781337669405
Author:FARRELL
Publisher:Cengage
Text book image
C++ Programming: From Problem Analysis to Program...
Computer Science
ISBN:9781337102087
Author:D. S. Malik
Publisher:Cengage Learning