How to explain a code to replace a word to word in sentence?

Asked by Last Modified  

11 Answers

Learn .Net

Follow 0
Answer

Please enter your answer

You can use replace method, eg:- const string brep = "cms it services"; Console.WriteLine("BEFORE"); Console.WriteLine(brep); string arep = brep.Replace("services", "training institute"); Console.WriteLine("AFTER"); Console.WriteLine(arep); //output will...
read more
You can use replace method, eg:- const string brep = "cms it services"; Console.WriteLine("BEFORE"); Console.WriteLine(brep); string arep = brep.Replace("services", "training institute"); Console.WriteLine("AFTER"); Console.WriteLine(arep); //output will be like this BEFORE cms it services AFTER cms it training institute read less
Comments

Tutor

using System; using System.Text; class Program { static void Main() { const string s = "This is an example."; // Create new StringBuilder from string. StringBuilder b = new StringBuilder(s); Console.WriteLine(b); // Replace the first word. //...
read more
using System; using System.Text; class Program { static void Main() { const string s = "This is an example."; // Create new StringBuilder from string. StringBuilder b = new StringBuilder(s); Console.WriteLine(b); // Replace the first word. // ... The result doesn't need assignment. b.Replace("This", "Here"); Console.WriteLine(b); // Insert the string at the beginning. b.Insert(0, "Sentence: "); Console.WriteLine(b); } } Output: This is an example. Here is an example. read less
Comments

Tutor

Use regular expressions.
Comments

Tutor

We can use string concatenate function.
Comments

Based on language platform we can use string manipulation function Replace. In Case of Oracle Database simple query can be used. No need of writing lengthy coding. For Example, the String is Phaneendra Kumar, I want to replace Phaneendra with Phanindra then the query as follows Select replace ('Phaneendra...
read more
Based on language platform we can use string manipulation function Replace. In Case of Oracle Database simple query can be used. No need of writing lengthy coding. For Example, the String is Phaneendra Kumar, I want to replace Phaneendra with Phanindra then the query as follows Select replace ('Phaneendra Kumar','Phaneendra','Phanindra') from dual; In the above dual is Oracle dummy table read less
Comments

Tutor

String ci catenate or replace functions.
Comments

Teacher

Use built in methods. Use intelligence Use Example code Use detail word to word to explanation If the student is familiar with the latest technologies or if he heard at least, it would be easy to demonstrate.
Comments

Trainer

In C#, we can do this by using three ways 1) Using Replace method in System. String class 2) Splitting the string based on some character and reconstructing it using String Builder class. This can be done when text has some delimiter or positional pattern 3) For Complex patterns string we can use Regular...
read more
In C#, we can do this by using three ways 1) Using Replace method in System. String class 2) Splitting the string based on some character and reconstructing it using String Builder class. This can be done when text has some delimiter or positional pattern 3) For Complex patterns string we can use Regular experssion to find and replace. read less
Comments

Word offers several options for locating specific content in your document. You can search for and replace items such as text, images, captions, bookmarks, or certain types of formatting such as paragraphs or page breaks. You can use the Go To command to go to a particular instance of content in your...
read more
Word offers several options for locating specific content in your document. You can search for and replace items such as text, images, captions, bookmarks, or certain types of formatting such as paragraphs or page breaks. You can use the Go To command to go to a particular instance of content in your document, and you can also extend your search by using wildcards, codes, or regular expressions to find words or phrases that contain specific characters or combinations of characters. read less
Comments

.NET Coder

Since you have posted this question in .NET Training category, let me answer you in the .NET programming language. You have several String manipulation functions provided by the .NET framework. For this particular scenario, String.Replace is the best method which accepts 2 parameters, and has the following...
read more
Since you have posted this question in .NET Training category, let me answer you in the .NET programming language. You have several String manipulation functions provided by the .NET framework. For this particular scenario, String.Replace is the best method which accepts 2 parameters, and has the following syntax: string.Replace("string_to_search","string_to_replace") Let's see an example below: string abc = "All the lazy foxes jump over the lazy dogs." Now in this string let's replace the word "the" with "my" So the piece of code is a single line as listed below to achieve our requirement. string manipulatedString = abc.Replace("the","my"); Now the manipulatedString contains, the following text: "All my lazy foxes jump over my lazy dogs." Please not here that the replace method accepts 2 parameters and returns a string. This is the signature of the Replace method. read less
Comments

View 9 more Answers

Related Questions

How can I learn ASP.NET in a month?
filter the basic concepts which will useful for the interview point and we have to learn first...if you learn priority bases it will useful for you and every time you learn what is the logic we fallow and where i can use it .
Madhavan
0 0
5
Should I train in C# before going for .net WCF?
Yes , go for C# first , after that you can learn the wcf very easily . Thanks. Surya.
Rajeev J
How to learn English very well fluently?
My Suggestion is not to go for any spoken English Institutes. You better start reading standard English newspaper if your background is English medium and yet not started practising go for Times of India...
Rifa
What is xunit framework?
A set of “Frameworks” for programming and automated execution of test-cases. The x in xUnit stands for programming language .The framework is a collection of classes, procedures and macros.Example of xUnit are Junit, Nunit etc
Pritam Kumar

Now ask question in any of the 1000+ Categories, and get Answers from Tutors and Trainers on UrbanPro.com

Ask a Question

Related Lessons

Stored procedures advantages
1. Server side secure code 2. Network overhead traffic between server and client through hhtp request and responses minimised. Stored procedures used in ado.net for two main benefits: 1. Network overhead...

C# - COLLECTIONS
Collection classes are specialized classes for data storage and retrieval. These classes provide support for stacks, queues, lists, and hash tables. Most collection classes implement the same interfaces.Collection...

Format Date to “MM/dd/yyyy” in Webgrid ASP.Net MVC Razor View
Replace above line with below to apply ("DD/mm/yyyy") formatting to date field in WebGrid AllTicket.Column(columnName: "DueDate", header: "Due Date") grid.Column("Date",format:@<text> @item.Date.ToString("MM/dd/yyyy")</text>)
M

Mohammad Shafi

0 0
0

Difference between App services,Cloud Service and Virtual Machine in Microsoft Azure
App Services :When you want to deploy your application to Azure IIS conatainers without requiring any control,web apps should be preferred.It's a part of Azure Paas.1) When you need IIS.2) Satisfy with...

Export To Excel using StringBuilder in ASP.net MVC C#
public ActionResult Export() { StringBuilder sb = new StringBuilder(); //static file name, can be changes as per requirement string sFileName = "filename.xls"; //Bind...
M

Mohammad Shafi

1 0
1

Recommended Articles

Microsoft Excel is an electronic spreadsheet tool which is commonly used for financial and statistical data processing. It has been developed by Microsoft and forms a major component of the widely used Microsoft Office. From individual users to the top IT companies, Excel is used worldwide. Excel is one of the most important...

Read full article >

Hadoop is a framework which has been developed for organizing and analysing big chunks of data for a business. Suppose you have a file larger than your system’s storage capacity and you can’t store it. Hadoop helps in storing bigger files than what could be stored on one particular server. You can therefore store very,...

Read full article >

Whether it was the Internet Era of 90s or the Big Data Era of today, Information Technology (IT) has given birth to several lucrative career options for many. Though there will not be a “significant" increase in demand for IT professionals in 2014 as compared to 2013, a “steady” demand for IT professionals is rest assured...

Read full article >

Business Process outsourcing (BPO) services can be considered as a kind of outsourcing which involves subletting of specific functions associated with any business to a third party service provider. BPO is usually administered as a cost-saving procedure for functions which an organization needs but does not rely upon to...

Read full article >

Looking for .Net Training ?

Learn from the Best Tutors on UrbanPro

Are you a Tutor or Training Institute?

Join UrbanPro Today to find students near you