You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe Regexes should function on Unicode scalars, not on Swift Chars. This is a failure mode: <space>+<combining mark> (such as " ̃") is seen as a single whitespace character, where all other programming languages I know of regard it conceptually as a single whitespace character plus a single non-spacing combining character.
Reproduction
letaTilde="ã"// \u{0061} + \u{0303}letaMatch=try!/\S/.firstMatch(in: aTilde)print(aMatch?.output)// "ã" hm... I would have expected only the scalar 'a' to matchletcombiningTilde="̃"// \u{0303}lettildeMatch=try!/\S/.firstMatch(in: combiningTilde)print(tildeMatch?.output)// "̃" correct to meletspaceWithTilde=" ̃"// space+tildeletspaceTildeMatch=try!/\S/.firstMatch(in: spaceWithTilde)print(spaceTildeMatch?.output)// nil, but I would expect \u{0303} to match
Expected behavior
tilde scalar was expected to match regex, since it is not a whitespace codepoint (WS) according to Unicode specification, but non-spacing (Mn)
Environment
5.9
Additional information
No response
The text was updated successfully, but these errors were encountered:
Description
I believe Regexes should function on Unicode scalars, not on Swift Chars. This is a failure mode:
<space>+<combining mark>
(such as" ̃"
) is seen as a single whitespace character, where all other programming languages I know of regard it conceptually as a single whitespace character plus a single non-spacing combining character.Reproduction
Expected behavior
tilde scalar was expected to match regex, since it is not a whitespace codepoint (WS) according to Unicode specification, but non-spacing (Mn)
Environment
5.9
Additional information
No response
The text was updated successfully, but these errors were encountered: