Re: [go-nuts] go1.21.0 panics when loading plugin

2023-09-04 Thread Brian Candler
I'm afraid I have to contradict that answer (from an AI chatbot perhaps?) Go's regexp library, called re2, is documented here: https://github.com/google/re2/wiki/Syntax It *does* support the \w character class. See the section headed "Perl character classes (all ASCII-only)". Furthermore, the

Re: [go-nuts] go1.21.0 panics when loading plugin

2023-09-04 Thread Google's Affiliate (Google Business Affiliate)
Hello, this is Jonathan, I can help you with your question about the error parsing regexp in Go. The error you are getting is caused by the use of \w in your regular expression. This is an invalid escape sequence in Go, because \w is not a predefined character class

[go-nuts] Re: Download large Zip file via sftp

2023-09-04 Thread Ozan Hacıbekiroğlu
Hi Phillip, Can you please try to use *sftp.Client as a pointer instead of sftp.Client? In addition, concurrent read configuration provided to sftp client can be omitted to reproduce. 23 Ağustos 2023 Çarşamba tarihinde saat 15:37:10 UTC+3 itibarıyla Phillip Siessl şunları yazdı: > Hi > > i h