wes d2a2ba9e15 first commit | před 4 roky | |
---|---|---|
.. | ||
README.md | před 4 roky | |
code.cpp | před 4 roky | |
unitTest.cpp | před 4 roky |
by Helen Yu tags: strings, regex
Create a function to extract the name of the subreddit from its URL. Examples subReddit("https://www.reddit.com/r/funny/") ➞ "funny" subReddit("https://www.reddit.com/r/relationships/") ➞ "relationships" subReddit("https://www.reddit.com/r/mildlyinteresting/") ➞ "mildlyinteresting" Notes N/A
Create a function to extract the name of the subreddit from its URL.
subReddit("https://www.reddit.com/r/funny/") ➞ "funny"
subReddit("https://www.reddit.com/r/relationships/") ➞ "relationships"
subReddit("https://www.reddit.com/r/mildlyinteresting/") ➞ "mildlyinteresting"
N/A