wpe41.gif (23084 bytes)CIS3355: Business Data Structures
Fall, 2008
 

String References

[Home Page] [Web Navigation] [(In)FAQs] [Class Schedule] [Textbook] [Lecture Slides] [Additional Coverage] [Supplementary Material] [Evaluation Areas] [Course Submissions] [Student Information]

All Submissions are recorded here. If there are Duplicate submissions (of sites), all sets of comments are recorded. If the submitter wishes to give their name, it is noted.

Site: http://aspire.cs.uah.edu/textbook/CPP7019.html
bullet7.3.14.2 CHARACTER ARRAYS. This appears to be part of a textbook on character arrays (I can't figure out the name of the text). It gives a very nice overview of what strings are, how they vary from numeric arrays, and has a number of examples in C/C++ of how to manipulate strings. All-in-all, worth a visit. (Submitted by Peeter Kirs)
Site: http://www.devx.com
bulletUnderstanding Strings In COM: This website gives you information about careers dealing with computer programming. It gives you information on databases and C++ programming. Within the C++ programming link, it provides a number of topics within the C++ programming. One of the topics is about strings. It gives a description of what strings are, as well as show examples of how strings are used in programming.
Site: http://www.python.org/doc/lib/module-string.html
bullet4.1 string -- Common string operations. It tells of the differnet conversions from atoi, atof, and atol and states the definitions of other terms associated with strings.
Site: http://www.iiitb.ac.in/Documents/Java/Special%20Edition%20using%20java/17ajavaf.htm
bulletFirst character in the string is at array index 0.) Unfortunately, few computer ... 17.1. In conventional programs, strings can be accessed directly by the program ... This web site will perhaps loose you if you have no idea what a String does, or what it is. According to the author, String handling in C or C++ (the languages that inspired Java) is infamously clunky. Java solves that problem the same way many C++ programmers do: by creating a Sting class. Java's String class enables your programs to manage text strings effortlessly, using statements that are similar to those used in simpler languages like BASIC or Pascal. Java also makes it easy to handle fonts, which determine the way that your text strings appear on-screen. If you have time to spare, this site is for you.
Site: http://www.cprogramming.com/tutorial/quiz/answer9.html
bulletThe website is about c programming. This site is helpful because it offers quizes to increase your knowledge of c programming. Correct answers are also available for review.
Site: http://nepsweb.co.uk/pgtcpp/string.htm
bulletStrings: The website I reviewed for the topic on Strings gave information such as string literals, the ASCII table, and escape sequence. First of all, a string is defined as a group of characters. In order to use a string literal, it must be enclosed in quotation marks. A couple of examples might include: “I love you”, “2,4,6,8” or “Help!”. Then it continues by explaining the ASCII code. It explains how the symbol we see on the screen is different from what is actually stored in the computer. For example, the numeric representation 48 is for the digit ‘0’. In case you ever see the character \ in a string is because it is specifying an escape sequence. What I mean is that C++ will automatically think it has reached the end of the string when it reaches a quotation mark. In case you would like to include the quotation mark on your string you need to include the symbol \ in front of it. For example, cout<< “They called the woman \“crazy\” Betty.””<<endl: will give you “They called the woman “crazy” Betty.” as the output. You will also need to use the escape sequence for new line ( \n ), horizon tab ( \t ), single quotation mark ( \’ ) and others. The website was very informative and described different types of using strings in a program.
Site: http://calc.utep.edu/PKirs/3355
bulletLecture Slides topic 5: The bible of CIS 3355 @ UTEP","FUNKENGROOVAKNOWLEDGISTIC BABY!
Site: http://www.geog.le.ac.uk/jwo/teaching/c_prog/06array/index.html
bulletStrings: Basically a string is a type of variable that stores a set of characters, as described by a web site that I found. This site was very useful and informative, giving a decent explanation of what a string is and how a string operates. This page informs the reader of how to initialize strings and gives example code. It displays the long and short way of initializing strings when programming in C. The page also goes over string functions and how to print out a string and the code for these actions also. A very resourceful page that helped me understand strings, highly recommended to take a look at.
Site: http://www.cppreference.com/cppstring.html
bulletC++ Strings Functions: This web site is another tutorial found on the Internet that briefly explains the concept of strings. This web site has many different links each one leading you to a particular topic of strings. It’s first few links direct you to the part of the lesson, which briefly shows you how to initialize, compare and assign strings. The lesson explains how to return characters at a given index. This lesson also shows how you could copy characters into an array. The lesson ends by teaching you to return a certain sub string and how to exchange two strings. There are over thirty different functions of strings that are illustrated, defined and explained in this lesson. After briefly defining and explaining each string function, small amount of source code is given to better illustrate how that particular function could look on an actual C/C++ program. This web site could be used as a fast reference while writing in C/C++ to manipulate, construct, initialize or compare strings. It could also be used as a guide in remembering some of the reserved words in C/C++ while dealing with strings.
Site: http://malun1.mala.bc.ca:8080/~wesselsd/csci160/notes/arrays.html
bulletStrings and Arrays: The website has a short tutorial on the basics of strings and includes a tutorial on arrays also. The strings tutorial is at the end so you may need to scroll down a little to get to the strings discussion. There is a comprehensive illustration of a problem.
Site: http://server11.hypermart.net/davidbook901/data/c/9460ab9b.htm
bulletChapter 10 Characters and Strings: Here is yet another link from the Teacher Yourself C in 21 days series. This link will direct you to Chapter 10 which includes extensive information of characters, strings, and strings and pointers. The Teach Yourself C in 21 days series is a fairly extensive series, for this reason I continue to provide direct links for the chapters that are relevant to what we have been learning in class. I hope this will assist those of you who do not have the time to thoroughly review the entire series. This chapter also includes a summary, exercises, and a quiz.
Site: http://cplus.about.com/library/weekly/aa041302a.htm
bulletC Tutorial: Strings: This website is a part of the About.com's C tutorial. This site is a lesson that covers the use of strings in C. It begins by presenting some basic ways to analyze and manipulate string data. . It shows in examples how String data is stored as a null character terminated character array. Then this site continues on to present some C library functions that are useful for string manipulation. It gives you a program to type which you can compile and run. This is a useful for a person who is learning strings. It would be very good practice if you do compile and run the program they give you so you could see how strings work. I highly recommend this site to my fellow classmates.
Site: http://www.juicystudio.com/tutorial/c/strings.html
bulletBuilding Character Arrays Using Strings: This is a website from juicystudio.com and in this area there is information on strings that seems close to some information we went over in class. I like this website because their examples look very simple and understandable. It shows you how to create a character array and include some examples of common string functions such as the strlen function, the strcpy function, the strcmp function, strcat function, and the strtok function.
Site: http://cs5.ecok.edu:457/tools/CONTENTS.html
bulletThis is a Programmer's Guide for C. I searched on Text Strings and came along this programmer's guide that shows a function called cscope that can be used to change a text string.
Site: http://www.devx.com/cplus/
bulletC++ Zone: This web page is certainly a good one. It not only covers C/C++ topics but, also many other programming languages. Tips of the day is one of my favorite link. The discussion board is a good way to get real-time advice from people that are experts in the field. It's worth checking it out.
Site: http://www.cplusplus.com/doc/tutorial/tut3-2.html
bulletC++ strings: This site is all about string and how besides numerical values there are also charecter strings, that allows the representation of characters, like words, sentences, names, texts, etc. this site mentions the initializing of strings, the assigning values to strings. the thing that got my attention in this site is the way in which strings can be converted to other types data types like numbers; it might be useful to translate that content to a variable of a numeric type. in conclusion this is a site that like me help me understand more about strings.
Site: http://cplus.about.com/library/weekly/aa051202b.htm
bulletC++ Tutorial - Lesson 11 Strings: This site has a complete tutorial of the various classes and operations that can be performed or manipulated using strings.
Site: http://www.iota-six.co.uk/c/g3_atoi_itoa_sprintf_sscanf.asp
bulletConverting Strings to and from Integers. This website gives very good examples of how to code to convert strings to integers or how to convert integers to strings. In addition, it also explains the usage of other functions besides atoi and itoa such as sscanf and sprintf
Site: http://www.cprogramming.com/tutorial/lesson9.html
bulletCprogramming.com: Tutorial: Strings. This particular page tells us what a string is and introduces the reader to strings used in arrays. There are some bits of sample code given so the reader can try it out for themselves. In addition to this helpful information, there are links to an online quiz and to other tutorials on the website.
Site: http://www.cse.fau.edu/~cot3002l/stringsC++/stringsC++_intro.html
bulletC++ strings: Introduction, String Lenght. Explains what is and how is a string used in C++, giving examples of how to include the strings in a C program.
Site: http://www.msoe.edu/eecs/ce/courseinfo/stl/string.htm
bulletThis webpage will define all the possible member functions, non-member function, and operators that the string class has. This is a very nice and useful website. By the first time, I find a website that will teach exaclty what we need to know. I grade this site as a A++ one.
Site: http://www.c-sharpcorner.com/StringsArrays.asp
bulletStringsArrays. A great website providing easy understaning to those wanting information regarding the use of strings and arrays
Site: http://www-ee.eng.hawaii.edu/Courses/EE150/Book/chap7/subsection2.1.1.2.html
bulletHow strings work. This site further elaborates on Dr. Kirs examples in the slides.
Site: http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html
bulletStrings. Web site provides a broad overview of what a string is. The description gets a bit detailed, and may be a bit confusing. Though the definition seems to be great. overall the website would be a great help to anyone looking for information.                                                             
Site:  http://en.wikipedia.org/wiki/String_
bullet      Provides a background in to how a computer works by using strings. It gives links and background on string datatypes, string algorithms, string oriented languages and functions.                                                        
Site:  http://mia.ece.uic.edu/~papers/intv/pdfgqvaDhcafa.pdf
bullet      This seems to be a handout made up by instructors that covers all you need to know about stings in C++ in about ten pages.                                                        
Site:  http://www.processdoc.com/doc/cppstl/string.html
bullet             The website is made for someone who has coded before. It has reference to other material not covered yet inclass, but has great links.                                                
Site:  http://vergil.chemistry.gatech.edu/resources/programming/c-tutorial/strings.html
bullet Describes the character array Strings in detail giving examples of the input to run a string code.                                                    
Site:  http://cs.smu.ca/~porter/csc/ref/c_cpp_strings.html
bullet   Provides a brief overview of what and how strings are utilized                                         
Site:  http://www.cprogramming.com/tutorial/string.html
bullet   Shows how to declare a string and some operations that can be done on them.                                                          
Site:  http://www.cs.cf.ac.uk/Dave/C/node7.html#SECTION00700000000000000000
bullet     This site have simple information about what strings and arrays are and how they work.                                                        
Site:  http://www.learn-programming.za.net/programming_c_learn07.html
bullet        this website gives you basic definitions and programming samples.                                                     
Site:  http://www.informit.com/articles/article.asp?p=430402&rl=1
bullet     The page contains a lot of advertising, however, the information it contains is good but again it is not much. It only focuses on the 'security'.                                                        
Site:  http://www.flipcode.com/articles/article_advstrings02.shtml
bullet      This website is not the greatest site to find information for strings but it can help you understand the concepts for strings and give users a sense of idea of what a string really is, but may still confuse a novice programmer It does though give users an option to download the string class source code and give a few examples of programming codes.                                                       
Site:  http://www.cppreference.com/cppstring/index.html
bullet  This site gives definitions of different type of things including strings.                                                           
Site:  http://www.cprogramming.com/tutorial/lesson9.html
bullet  This website helped me with strings in C++. I had trouble with the third program and converting from strings to integers and I looked it up in this website.                                                           
Site:  http://www.msoe.edu/eecs/ce/courseinfo/stl/string.htm
bullet This site has a lot of predeterminated strings words that can be used to improbe our code.                                                            
Site:  http://www.codeproject.com/string/string_conversions.asp
bullet         it helped in understanding the material we discussed in class.                                                    
Site:  http://www.macs.hw.ac.uk/~pjbk/pathways/cpp1/node183.html
bullet   Very simple, basic site that gives the basics for beginners.                                                          
Site:  http://www.cppreference.com/cppstring/index.html
bullet  It gives you a brief summary about strings and also important information about strings in c ++ programing. I has various links to other pages if you still have troblue to understand it.                                                           
Site:  http://www.php.net/manual/en/language.types.string.php
bullet    Website shows the exact code and end results of what should happen after you enter the code.                                                         
Site:  http://mia.ece.uic.edu/~papers/intv/pdfgqvaDhcafa.pdf
bullet    I like this site because is very similar to the class' book. It has simple and understandables examples.                                                         
Site:  http://www.cee.hw.ac.uk/~pjbk/pathways/cpp1/node183.html
bullet  this website has a little information, but tries to summarize well how character strings are used in input.                                                           
Site:  http://www.sysprog.net/cstring.html
bullet      This website provides some general information about strings and even shows some sample code.                                                       
Site:  http://www.microsoft.com/technet/sysinternals/Miscellaneous/Strings.mspx
bullet   It is a brief description on how strings works.                                                          
Site:  http://msdn2.microsoft.com/en-us/library/ms646979.aspx
bullet  The page comments "This section describes the string functions and explains how to use them in your applications" which it is very interesting.                                                           
Site:  http://ola4.aacc.edu/rkgill/Modules/module10-char-ary-strings.htm
bullet     This is a really good website because it goes into detail and strings in C++. It includes how to read and print character strings. In addition, it shows various examples on the different functions of strings. These examples go into great detail, which really helps when you are trying to understand strings.                                                         
Site:  http://www.cppreference.com/cppstring/index.html
bullet  This page gives instruction on how to construct different types of data strings and gives detailed examples                                                           
Site:  http://msdn2.microsoft.com/en-us/library/ms646979.aspx
bullet This section describes the string functions and explains how to use them in your applications.                                                            
Site:  http://www.cprogramming.com/tutorial/lesson9.html
bullet This website covers C style strings and the different functions that are used.Also gives somes examples.                                                            
Site:   http://www.cppreference.com/stdstring/index.html
bullet   this site tells you the how to convers strings to a double, an integer and many more things it is a really good reference check it out.                                                          
Site:  http://msdn2.microsoft.com/en-us/library/system.string.aspx
bullet  The site explains from top to bottom all the different string classes. Also give a very precise and easy defenition about strings, which makes it very easy to understand. In addition, provides visualization on different programs. Very helpful site.                                                           
Site:  http://www.cppreference.com/cppstring/index.html
bullet this website has many different codes to work with strings it is very useful and has great examples                                                            
Site:  http://msdn2.microsoft.com/en-us/library/system.string(VS.71).aspx
bullet    I think that this website does a good job in explaining what strings are and how they could be used                                                         
Site:   http://www.cprogramming.com/tutorial/c/lesson9.html
bullet  Very detailed and informitive, Had some examples                                                           
Site:  http://msdn2.microsoft.com/en-us/library/thwcx436(VS.80).aspx
bullet Explains what a string is and gives examples of how to use it.                                                            
Site:  http://www.informit.com/library/content.aspx?b=STY_JavaScript_24_hours&seqNum=59&rl=1
bullet  This website doesnt really define what a string array is. However it does show you how to use them, it tell you how to create them, how to split them and how to sort them. It shows you how to by giving a few examples of each. Also not only does it have info on string arrays but also in other things that my be helpful to us later on.                                                           
Site:  http://cs.stmarys.ca/~porter/csc/ref/c_cpp_strings.html
bullet  On this web site you will find a simple explanation and differences of strings in C and C++. You will also find some examples of strings that can help make a string and understand it.                                                            
Site:  http://cs.smu.ca/~porter/csc/ref/c_cpp_strings.html
bullet Defines the difference where the strings are found in C++ and in C language. They are found in different libraries because they two diffrent function libraries                                                           
Site:  http://msdn2.microsoft.com/en-us/library/aa189291(office.10).aspx
bullet Gives you most o the information you need for working with Strings.                                                           
Site:  http://www.macs.hw.ac.uk
bullet   Good site. it's small but to the point.                                                          
Site:  http://nepsweb.co.uk/pgtcpp/string.htm
bullet   This is a very useful site that has a very helpful guide o pretty much everything you need to know about C++ Stings.                                                           
Site:  http://tutorial-portal.net/forums/index.php?topic=103.0
bullet Explanetion of the process of how to store strings.                                                            
Site:  http://cs.stmarys.ca/~porter/csc/ref/c_cpp_strings.html
bullet   Easy to follow and understand!                                                          
Site:  http://www.codeproject.com/string/cppstringguide1.asp
bullet Helpful introduction to Strings, with ASCII, DBCS, Unicode and a forum!                                                            
Site:  http://msdn2.microsoft.com/en-us/library/system.string.aspx
bullet It tells us that a string is a collection of characters in UNICODE, also the values of a string object.                                                            
Site:  http://computer.howstuffworks.com/c35.htm
bullet   Strings in C are intertwined with pointers to a large extent. You must become familiar with the pointer concepts covered in the previous articles to use C strings effectively. Once you get used to them, however, you can often perform string manipulations very efficiently.                                                          
Site:  http://www.geocities.com/learnprogramming123/Clesson10Beginner.htm
bullet   very helpful in understanding better about strings                                                          
Site:  http://www.cplusplus.com/reference/clibrary/cstring/
bullet   C and C++ can be very confusing for amateurs but sites like these help                                                          
Site:  http://www.leepoint.net/notes-java/data/strings/conversion/string2num.html
bullet   I like this website because it lets you know how to calculate all strings to numbers.                                                          
Site:  http://www.codeproject.com/string/cppstringguide1.asp
bullet  it explains everything about strings                                                           
Site:  http://www.cplusplus.com/reference/string/string/
bullet  I found out that String objects are a special type of container, specifically designed to operate with sequences of characters. Unlike traditional c-strings, which are mere sequences of characters in a memory array, C++ string objects belong to a class with many built-in features to operate with strings in a more intuitive way and with some additional useful features common to C++ containers.                                                            
Site:  http://www.webopedia.com/TERM/C/character_string.html
bullet  i usually don't like stuff from this ntype of encyclopedias but this one i got to say that it actually focuses very well and explains it too, how styrings do work in a website.                                                           

This page was last updated on 01/16/08.