Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is the STUFF function and how does it differ from the REPLACE function?
What is the STUFF function and how does it differ from the REPLACE function?
✍: Guest
Answer1:
stuff-> inserts into it without removing any thing.
Replace->replace the given text with the new one.
Answer2:
STUFF - it deletes a specified length of characters and inserts another set of characters at a specified starting point.
REPLACE -Replaces all occurrences of a specified string value with another string value.
2014-10-13, 1763👍, 0💬
Popular Posts:
How To Run a JUnit Test Class? A JUnit test class usually contains a number of test methods. You can...
What is the value of this expression? +1-2*3/4 -0.5
How can I enable session tracking for JSP pages if the browser has disabled cookies? We know that se...
What is cross page posting? By default, button controls in ASP.NET pages post back to the same page ...
What is Service Oriented architecture? “Services” are components which expose well defined interface...