[Solved] What could be the regular expression for the text “192.168.71.1 GET HTTP/1.0 /test/abc”?
Using https://regex101.com/ the following works: 192\.168\.71\.1\sGET\sHTTP\/1\.0\s\/test\/abc Remember to escape special characters like . and \ if you want to use them as literals. If you want to use any of these characters as a literal in a regex, you need to escape them with a backslash Take a look at http://www.regular-expressions.info/characters.html to see more about … Read more