Delete all-cap words
-
Sorry, won’t happen again.
-
Hi, @lordp666, @terry-R, @mark-olson, @coises, @peterjones and All,
@lordp666, I’m simply blown away by the accuracy of ChatGPT’s answers. Truly amazing !
Sincerely, the accuracy of the response is impressive. Just one small error, however:
With our
Boost
regex engine, if you have used the-i
modifier or if you have ticked theMatch case
box :-
The
\l
syntax represents a single lowercase Unicode letter -
The
\u
syntax represents a single uppercase Unicode letter
and :
-
The
[[:alnum:]]
syntax is a shortcut for[\d\l\u]
, so any Unicode letter or digit -
The
\w
or[[:word:]]
syntaxes are a shortcut for[_\d\l\u]
, so any Unicode letter, digit or the underscore
So, apart from this particular point, the rest of ChatGPT’s reply, including the summary, is completely accurate !
Sorry, no need to give you any further explanations !
Ah… coders everywhere : unite and fight ! In the ( very ) near future, AI is going to replace us and leave us out in the cold ;-))
BR
guy038
-