How Find, Replace and Go To commands ca be used to
substitute one
character string for another? Explain with the heIp of an
example.



How Find, Replace and Go To commands ca be used to substitute one character string for another? ..

Answer / saba

FIND:-
You can quickly search for every occurrence of a specific
word or phrase.
1. On the Edit menu, click Find.
2. In the Find what box, enter the text that you want
to search for.
3. Select any other options that you want. To select
all instances of a specific word or phrase at once, select
the Highlight all items found in check box, and then select
which portion of the document you want to search in by
clicking in the Highlight all items found in list.
4. Click Find Next or Find All.
To cancel a search in progress, press ESC.
REPLACE:-
You can automatically replace text — for example, you can
replace "Acme" with "Apex."
1. On the Edit menu, click Replace.
2. In the Find what box, enter the text that you want
to search for.
3. In the Replace with box, enter the replacement
text.
5. Select any other options that you want.
For Help on an option, click the question mark, and then
click the option.
4. Click Find Next, Replace, or Replace All.
To cancel a search in progress, press ESC.
GO TO:-
1. On the Edit menu, click Go To.
2. In the Go to what box, click the type of item.
3. Do one of the following:
o To go to a specific item, type the name or number
of the item in the Enter box, and then click Go To.
o To go to the next or previous item of the same
type, leave the Enter box empty, and then click Next or
Previous.

Is This Answer Correct ?    13 Yes 2 No

Post New Answer

More STL Interview Questions

what is an algorithm in terms of STL?

1 Answers   Lucent, Wipro,


What are the various types of stl containers?

0 Answers  


Assume I have a linked list contains all of the alphabets from "A" to "Z?" I want to find the letter "Q" in the list, how does you perform the search to find the "Q?"

2 Answers  


Question 1)Read the data from one file and remove all the duplicated words and generate an output file containg only using words.Program should also print number of occurance of each words on standard output.(Program must be use STL and iostream object). Question 2)Write a program to convert the lower case contents of file to upper case using STL. Question 3)What is the output of this problem. int i=12; int &r =i; r+r/4; int +p =&r; int *p = &r; P+=r; return 1; Answer :a)12 b)17 c) 30 d)24 E)15 Question 4) #include #include #include void main() { char srcstr[30],desstr[30]; int i,len; clrscr(); cout<<"\nenter the string\n"; cin>>srcstr; len=strlen(srcstr); for(i=0;srcstr[i]!='\0';i++) { desstr[--len]=srcstr[i]; } desstr[i]='\0'; cout<<"\nreversed string is\n"; for(i=0;desstr[i]!='\0';i++) { cout< } getch(); } Answer : A) string output b)tuptuo gnirts c) string d)output Question 5) Class Test { static const Tk=LEN; int q; public: foo(intx =LEN):q(x){}; TGet Q() const { return q:} void call test Foo<long :9> foo(10); std::const<< foo.Getq(); Answer: 7,8,9,10,11 question 6) class A { int a; char b; }; class B:public A { char b; int a; }; What is the size? Answer a)5 bytes for class A and 5 bytes class B b)4 bytes for class A and 8 bytes class B. c).... d)....

2 Answers   Bally Technologies,


what is c++

2 Answers  






why we are using the fork command?.. how it works?

1 Answers  


why does the execution of a c++ program start with main()???

11 Answers  


What is Template Specialization?

1 Answers   Lucent,


write a piece of c++ code which allocate memory to the 50 object of type CObj

2 Answers  


what is compiler?

4 Answers   NASA,


What is a list in c++ stl?

0 Answers  


What do stl stand for?

0 Answers  


Categories