@@ -75,7 +75,7 @@ Other useful special characters are:
75
75
76
76
So, what are these going to match?
77
77
78
- > ## ^[Oo]rgani.e\w*
78
+ > ## ` ^[Oo]rgani.e\w*`
79
79
> Can you guess what the regular expression `^[Oo]rgani.e\w*` will match?
80
80
>
81
81
> > ## Solution
@@ -89,7 +89,7 @@ So, what are these going to match?
89
89
> {: .solution}
90
90
{: .challenge}
91
91
92
- > ## [Oo]rgani.e\w+$
92
+ > ## ` [Oo]rgani.e\w+$`
93
93
> Can you guess what the regular expression `[Oo]rgani.e\w+$` will match?
94
94
>
95
95
> > ## Solution
@@ -103,7 +103,7 @@ So, what are these going to match?
103
103
> {: .solution}
104
104
{: .challenge}
105
105
106
- > ## ^[Oo]rgani.e\w?\b
106
+ > ## ` ^[Oo]rgani.e\w?\b`
107
107
> Can you guess what the regular expression `^[Oo]rgani.e\w?\b` will match?
108
108
>
109
109
> > ## Solution
@@ -117,7 +117,7 @@ So, what are these going to match?
117
117
> {: .solution}
118
118
{: .challenge}
119
119
120
- > ## ^[Oo]rgani.e\w?$
120
+ > ## ` ^[Oo]rgani.e\w?$`
121
121
> Can you guess what the regular expression `^[Oo]rgani.e\w?$` will match?
122
122
>
123
123
> > ## Solution
@@ -131,7 +131,7 @@ So, what are these going to match?
131
131
> {: .solution}
132
132
{: .challenge}
133
133
134
- > ## \b[Oo]rgani.e\w{2}\b
134
+ > ## ` \b[Oo]rgani.e\w{2}\b`
135
135
> Can you guess what the regular expression `\b[Oo]rgani.e\w{2}\b` will match?
136
136
>
137
137
> > ## Solution
@@ -145,7 +145,7 @@ So, what are these going to match?
145
145
> {: .solution}
146
146
{: .challenge}
147
147
148
- > ## \b[Oo]rgani.e\b|\b[Oo]rgani.e\w{1}\b
148
+ > ## ` \b[Oo]rgani.e\b|\b[Oo]rgani.e\w{1}\b`
149
149
> Can you guess what the regular expression `\b[Oo]rgani.e\b|\b[Oo]rgani.e\w{1}\b` will match?
150
150
>
151
151
> > ## Solution
0 commit comments