Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 6 Nov 2016 22:06:28 +0100
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        Stefan Bethke <stb@lassitu.de>
Cc:        Greg Rivers <gcr+freebsd-stable@tharned.org>, freebsd-stable@freebsd.org
Subject:   Re: Uppercase RE matching problems in FreeBSD 11
Message-ID:  <20161106210628.hg3dcpozfjtuo3nt@ivaldir.etoilebsd.net>
In-Reply-To: <29451103-E8DB-4656-A5BB-AEB924A728D6@lassitu.de>
References:  <alpine.BSF.2.20.1611051912260.2462@flake.tharned.org> <20161106110729.z2px7mzlhcwxvrvu@ivaldir.etoilebsd.net> <29451103-E8DB-4656-A5BB-AEB924A728D6@lassitu.de>

next in thread | previous in thread | raw e-mail | index | archive | help

--63idfhg4r23xf2ri
Content-Type: text/plain; charset=utf-8
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

On Sun, Nov 06, 2016 at 09:57:00PM +0100, Stefan Bethke wrote:
>=20
> > Am 06.11.2016 um 12:07 schrieb Baptiste Daroussin <bapt@FreeBSD.org>:
> >=20
> > On Sat, Nov 05, 2016 at 08:23:25PM -0500, Greg Rivers wrote:
> >> I happened to run an old script today that uses sed(1) to extract the =
system
> >> boot time from the kern.boottime sysctl MIB. On 11.0 this no longer wo=
rks as
> >> expected:
> >>=20
> >> $ sysctl kern.boottime
> >> kern.boottime: { sec =3D 1478380714, usec =3D 145351 } Sat Nov  5 16:1=
8:34 2016
> >> $ sysctl kern.boottime | sed -e 's/.*\([A-Z].*\)$/\1/'
> >> v  5 16:18:34 2016
> >>=20
> >> sed passes over 'S' and 'N' until it hits 'v', which it considers uppe=
rcase
> >> apparently. This is with LANG=3Den_US.UTF-8. If I set LANG=3DC, it wor=
ks as
> >> expected:
> >>=20
> >> $ sysctl kern.boottime | LANG=3DC sed -e 's/.*\([A-Z].*\)$/\1/'
> >> Nov  5 16:18:34 2016
> >>=20
> >> Testing every lowercase character separately gives even more inconsist=
ent
> >> results:
> >>=20
> >> $ cat <<! | LANG=3Den_US.UTF-8 sed -n -e '/^[A-Z]$/=E2=80=9Ap
>=20
> >> Here sed thinks every lowercase character except for 'a' is uppercase!=
 This
> >> differs from the first test where sed did not think 'o' is uppercase. =
Again,
> >> the above behaves as expected with LANG=3DC.
> >>=20
> >> Does anyone have any insight into this? This is likely to break a lot =
of
> >> existing code.
> >>=20
> >=20
> > Yes A-Z only means uppercase in an ASCII only world in a unicode world =
it means
> > AaBb... Z because there are way more characters that simple A-Z. In Fre=
eBSD 11
> > we have a unicode collation instead of falling back in on LC_COLLATE=3D=
C which
> > means ascii only
> >=20
> > For regrexp for example one should use the classes: :upper: or :lower:.
>=20
> That is rather surprising.  Is there a normative reference for the treatm=
ent of bracket expressions and character classes when using locales other t=
han C and/or encodings like UTF-8?

http://pubs.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap09.html

For example:

"Regular expressions are a context-independent syntax that can represent a =
wide
variety of character sets and character set orderings, where these character
sets are interpreted according to the current locale. While many regular
expressions can be interpreted differently depending on the current locale,=
 many
features, such as character class expressions, provide for contextual invar=
iance
across locales."

Best regards,
Bapt

--63idfhg4r23xf2ri
Content-Type: application/pgp-signature; name="signature.asc"

-----BEGIN PGP SIGNATURE-----

iQIcBAABCAAGBQJYH5tUAAoJEGOJi9zxtz5aiBMP/2QqhR2T1w63hASc40+uOxiV
eaZy+8KssQsuxe4g83f2cY0T9gvDEAp5bT2q7hh5WfLj/Sban/hf6V0Q0quVY2gD
tqmDx39nwTw8DYEcGJnGSMzoc3RiH/ugEmT+o0BlILcVoO0Tyq30sulXPcGyH9h9
EPNnmFbkddO2amXib5TzxKX0aYAZHbVZMcgcyswcQSzF8EQI7k7HsYkSmBc0hFAe
ZCqPpBSYGYp7EAZLPGLrkS8Q7jirErr+dWLuVxaR3zutYZ2ysEKYlV+UXVhnsAq6
n+hWjcIDd/HT272NB4bEjg2VO+LaWPDT3AuRwtmbryyANrEpN3Fi5iesSBouYmAv
Tb6Ly+TcCe+V38FhaEhhiI7G+JriRp4F299bQFXdJ+JOo24tE/Qmux8h2cfFxP/s
bJR4we/iegnvgeVcDMc0PHDeWCE803DT5dZDJt2l1xTsmLhh65vcUzTdZ9HQzrFe
16AaK74OKTeI+N51ibQihmzbxuS0MBTxhS7Q1c6KSAsazZvB1EtRiAW9ZXZMkhOs
Ut4EHZmqzm82V+K0wM6i8qfsLFsA7TZpBAb+df3ML6XG1nczi3cQnxITWcN0lRj0
/HOXnPaY9+qPMi0kZiFkmoBRgjmosO2CcdfbFSYox8iClFnmBadvEPLDmhb50SeY
5O/b/VhVzkrD0yOWEeWF
=Hy2n
-----END PGP SIGNATURE-----

--63idfhg4r23xf2ri--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20161106210628.hg3dcpozfjtuo3nt>