Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialRichard Külling
9,465 PointsThe Teacher's notes do not include the part about "special characters" as mentioned in the video at 1:40
Where / when can I find that information? Cheers!
3 Answers
jlampstack
23,932 PointsTry googling "RegEx Cheat Sheet pdf"
There are very handy cheat sheets you can refer to and even print for just about any programming language. They are great refreshers!
One of the first things I do before learning any new language is print a cheat sheet and use it as a guide before starting a Treehouse Track. I find it easier visually and like writing notes on paper.
Here's the first one I found... https://zeroturnaround.com/rebellabs/java-regular-expressions-cheat-sheet/
Richard Külling
9,465 PointsHave sent a mail about the missing notes, thanks!
Robert Aguirre
14,617 PointsTeachers notes: Question 4
The special characters you are referring to can be excluded with the \w
character class. Using \w
will match any alphanumeric character from the basic Latin alphabet, including the underscore. Equivalent to [A-Za-z0-9_]
, which will also result in excluding $%#$@
.
You can read further on all the character classes here and more about regular expressions here.
Steven Parker
231,184 PointsSteven Parker
231,184 PointsYou can report course bugs as described on the Support page. And if you are the first to report it, you will get an "Exterminator" badge!