<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class=""><div class="">&lt;email reordered a bit below to make responding easier&gt;:</div><div class=""><br class=""></div>On Nov 24, 2017, at 11:12 AM, Xiaodi Wu &lt;<a href="mailto:xiaodi.wu@gmail.com" class="">xiaodi.wu@gmail.com</a>&gt; wrote:<br class=""><div><blockquote type="cite" class="">I think we've circled back to a topic that we've discussed here before. I do agree that having more of this validation at compile time would improve the experience. However, I can see a few drawbacks to the _compiler_ doing the validation:<br class=""><div class=""><div dir="ltr" class=""><div class="gmail_extra"><div class="gmail_quote"><div class=""><br class=""></div><div class="">- As seen in these discussions about string literals where users want to copy and paste text and have it "just work," supporting only one dialect in regex literals will inevitably lead users to ask for other types of regex literals for each individual flavor of regex they encounter.</div></div></div></div></div></blockquote><div><br class=""></div><div>Focusing first on the user model instead of implementation details:&nbsp;</div><div><br class=""></div><div>I don’t see why this is desirable at all. &nbsp;If someone came to the Perl community and said “I want to use unmodified tcl regexp syntax”, the Perl community would politely tell them to buzz off. &nbsp;They can just use string literals.</div><div><br class=""></div><div>Allowing // syntax to support different grammars makes the Swift language more complex for users (independent of implementation details) and I don’t see any benefit to allowing that. &nbsp;IMO, we’d be much better off by having a single blessed syntax, make it work as well as possible, and steer the community strongly towards using it.</div><div><br class=""></div><div>Someone wanting to use NSRegularExpression or a bsd regex library or whatever can use string literals, just like they do now. &nbsp;This has the *advantage* that you don’t look at the code using //’s and think it does something it doesn’t.</div><div><br class=""></div><blockquote type="cite" class=""><div dir="ltr" class=""><div class="gmail_extra"><div class="gmail_quote"><div class="">- In the absence of a `constexpr`-like facility, supporting runtime expressions would mean we'd be writing the same code twice, once in C++ for compile-time validation of literal expressions and another time in Swift for runtime expressions.</div></div></div></div></blockquote><div><br class=""></div><div>Agreed. &nbsp;There are various ways we could factor this logic, including having the regex parser + tree representation be literally linked into both the compiler and stdlib. &nbsp;I don’t think the cost is great, and we definitely do such things already. &nbsp;If we do this right, the functionality can subsume tools like flex as well, which means we’d get a net reduction of complexity in the whole system.</div><div><br class=""></div><br class=""><blockquote type="cite" class=""><div dir="ltr" class=""><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div style="word-wrap:break-word;line-break:after-white-space" class=""><div class="">2) I’d like to explore the idea of making // syntax be *patterns* instead of simply literals.&nbsp; As a pattern, it should be possible to bind submatches directly into variable declarations, eliminating the need to count parens in matches or other gross things.&nbsp; Here is strawman syntax with a dumb example:</div><div class=""><br class=""></div><div class=""></div><blockquote style="margin:0px 0px 0px 40px;border:none;padding:0px" class=""><div class="">if case /([a-zA-Z]+: let firstName) ([a-zA-Z]+: let lastName)/ = getSomeString() {</div><div class="">&nbsp; &nbsp;print(firstName, lastName)</div><div class="">}</div></blockquote></div></blockquote><div class=""><br class=""></div><div class="">This is an interesting idea. But is it significantly more usable </div></div></div></div></blockquote><div><br class=""></div><div>I don’t know if this is the ideal way to do this, as I mentioned before, I think we need to have a concerted design effort that considers such things. &nbsp;Regex functionality does fit naturally with pattern matching though, so I don’t think we should discard it too early.</div><br class=""><blockquote type="cite" class=""><div dir="ltr" class=""><div class="gmail_extra"><div class="gmail_quote"><div class="">than the same type having a collection of named matches using the usual Perl syntax?</div><div class=""><br class=""></div><div class="">&nbsp; if case /(?&lt;firstName&gt;[a-zA-Z]+) (?&lt;lastName&gt;[a-zA-Z]+)/ = getSomeString() {</div><div class="">&nbsp; &nbsp; print(Regex.captured["firstName"], Regex.captured["lastName"])</div><div class="">&nbsp; }</div></div></div></div></blockquote><div><br class=""></div><div>Personally, I really don’t like this. &nbsp;It turns a structured problem into one that violates DRY and loses the structure inherent in the solution. &nbsp;Also, while theoretically the dictionary could be optimized away, in practice that would be difficult to do without heroics.</div><br class=""><blockquote type="cite" class=""><div dir="ltr" class=""><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div style="word-wrap:break-word;line-break:after-white-space" class=""><div class=""></div><div class="">3) I see regex string matching as the dual to string interpolation.&nbsp; We already provide the ability for types to specify a default way to print themselves, and it would be great to have default regex’s associated with many types, so you can just say “match an Int here” instead of having to match [0-9]+ and then do a failable conversion to Int outside the regex.</div><div class=""><br class=""></div><div class=""><br class=""></div><div class="">4) I’d like to consider some of the advances that Perl 6 added to its regex grammar.&nbsp; Everyone knows that modern regex’s aren’t actually regular anyway, so it begs the question of how far to take it.&nbsp; If nothing else, I appreciate the freeform structure supported (including inline comments) which make them more readable.</div></div></blockquote><div class=""><br class=""></div><div class="">Sounds like we want multiline regex literals :)</div></div></div></div></blockquote><br class=""></div><div>Yes, I absolutely do, but I want the // syntax to imply them. &nbsp;It’s “single line” literal syntax that we should eliminate by default.&nbsp;</div><div><br class=""></div><div>-Chris</div><div><br class=""></div><br class=""></body></html>