<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><br class=""><div><blockquote type="cite" class=""><div class="">On 8 Jun 2017, at 12:35, Tony Allevato &lt;<a href="mailto:tony.allevato@gmail.com" class="">tony.allevato@gmail.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class="">It is an extremely rare case for a developer to know a priori what literal numeric indices should be used when indexing into a string, because it only applies when strings fall into a very specific format and encoding.<div class=""><br class=""></div><div class="">It's been discussed before during String-related proposals but AFAIK the core team has come out against it—it would be an invitation for users who don't understand the distinction to do very unsafe and wrong things with strings. IMO, writing your own extension or using index.offset(by:) isn't a huge penalty here.</div></div></div></blockquote><div><br class=""></div><div>Is it really an invitation when it’s hidden inside the UTF16View?</div><br class=""><blockquote type="cite" class=""><div class=""><div class="gmail_quote"><div dir="ltr" class="">On Thu, Jun 8, 2017 at 10:32 AM David Hart via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:<br class=""></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello,<br class="">
<br class="">
When working with Strings which are known to be ASCII, I tend to use the UTF16View for the performance of random access. I would also like to have the convenience of indexing with Int:<br class="">
<br class="">
let barcode = "M1XXXXXXXXX/CLEMENT&nbsp; &nbsp;EELT9QBQGVAAMSEZY1353 244 21D 531&nbsp; 10A1311446838”<br class="">
let name = barcode.utf16[2..&lt;22]<br class="">
let pnrCode = barcode.utf16[23..&lt;30]<br class="">
let seatNo = barcode.utf16[47..&lt;51]<br class="">
let fromCity = barcode.utf16[30..&lt;33]<br class="">
let toCity = barcode.utf16[33..&lt;36]<br class="">
let carrier = barcode.utf16[36..&lt;39]<br class="">
let flightNumber = barcode.utf16[39..&lt;44]<br class="">
let day = barcode.utf16[44..&lt;47]<br class="">
<br class="">
I define my own subscript in an extension to UTF16View but I think this should go in the Standard Library.<br class="">
Any thoughts?<br class="">
<br class="">
David.<br class="">
_______________________________________________<br class="">
swift-evolution mailing list<br class="">
<a href="mailto:swift-evolution@swift.org" target="_blank" class="">swift-evolution@swift.org</a><br class="">
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank" class="">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br class="">
</blockquote></div>
</div></blockquote></div><br class=""></body></html>