Pārlūkot izejas kodu

added readme removed Match class

miscbits 6 gadus atpakaļ
vecāks
revīzija
7ca89105ab
2 mainītis faili ar 9 papildinājumiem un 2 dzēšanām
  1. 9
    0
      README.md
  2. 0
    2
      src/main/java/Match.java

+ 9
- 0
README.md Parādīt failu

@@ -0,0 +1,9 @@
1
+#REGEX
2
+
3
+##Directions
4
+
5
+Make a project that will go through the hamlet file provided and using regex replace every instance of "Hamlet" with "Leon" and every instance of Horatio with "Tariq".
6
+
7
+Beginning with tests, you are to program all the steps it will take to complete that process. Some tests have been stubbed out for you but these will not cover all the methods you should have in your project.
8
+
9
+*IMPORTANT*: You are not to use String Utilities to simply replace words. You must use Pattern and Matcher.

+ 0
- 2
src/main/java/Match.java Parādīt failu

@@ -1,2 +0,0 @@
1
-public class Match {
2
-}