|
@@ -1,12 +1,21 @@
|
1
|
|
-------------------------------------------------------------------------
|
2
|
|
-This is the project README file. Here, you should describe your project.
|
3
|
|
-Tell the reader (someone who does not know anything about this project)
|
4
|
|
-all he/she needs to know. The comments should usually include at least:
|
5
|
|
-------------------------------------------------------------------------
|
6
|
|
-
|
7
|
|
-PROJECT TITLE:
|
8
|
|
-PURPOSE OF PROJECT:
|
9
|
|
-VERSION or DATE:
|
10
|
|
-HOW TO START THIS PROJECT:
|
11
|
|
-AUTHORS:
|
12
|
|
-USER INSTRUCTIONS:
|
|
1
|
+# JavaStringCheese
|
|
2
|
+
|
|
3
|
+## `Fork` this Repository
|
|
4
|
+* You should work on this project in your own repository.
|
|
5
|
+* Click the `fork` button in the top right corner to create a copy of this repository on your account.
|
|
6
|
+* You can go through the [GitHub forking tutorial](https://help.github.com/articles/fork-a-repo/) if you need additional practice with this.
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+## Java String Cheese
|
|
10
|
+
|
|
11
|
+### **Purpose:**
|
|
12
|
+* Practice String operations
|
|
13
|
+
|
|
14
|
+### **Resources:**
|
|
15
|
+* [String](https://zipcoder.github.io/reveal-slides/string-and-string-builder.html#/)
|
|
16
|
+
|
|
17
|
+### Instructions
|
|
18
|
+1. Tests have been created for this lab
|
|
19
|
+2. Right click on the test file named `StringParserTest` and select "Test All"
|
|
20
|
+3. Open `StringParser` and implement the methods.
|
|
21
|
+4. Feel free to look at the test to see the sample input and output.
|