I mean the Facebook.html file that you are scanning
On Sat, Mar 19, 2022 at 9:17 PM William Torrez Corea
wrote:
> Here is the short code:
>
> https://gist.github.com/adipasquale/2217595
>
>
>
> On Sat, Mar 19, 2022 at 8:10 PM Adam Hopkins
> wrote:
>
>> D
Did you download Facebook.html and already have it sitting on your computer?
Can you upload that to a gist and share it here?
On Sat, Mar 19, 2022 at 8:48 PM William Torrez Corea
wrote:
> I have a short code:
>
> #!/usr/bin/perl;
> @ARGV = ("Facebook.html");
> while(<>){
> while(/(http[a-z\-\.0
If you add an underscore (the equivalent of \w): [a-zA-Z0-9*_*]
Then \W is the opposite.
If you wanted to not match [a-zA-Z0-9]
You could do
$string !~ m/[a-zA-Z0-9]/
On Fri, Dec 31, 2021 at 10:23 PM Piper H wrote:
> Hello
>
> I know [a-zA-Z0-9] means words and numbers.
> But what's the re