Проверка шаблона шины для iOS
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

MeetupId.Aux.swift 544B

il y a 1 an
il y a 1 an
il y a 1 an
il y a 1 an
il y a 1 an
il y a 1 an
il y a 1 an
il y a 1 an
12345678910111213141516171819202122
  1. import Foundation
  2. public extension MeetupId {
  3. static func formatId(_ s: String) -> String? {
  4. let digits = s.components(separatedBy: NSCharacterSet.decimalDigits.inverted).reduce("") { $0 + $1 }
  5. var r = ""
  6. var i = 0
  7. // Делим каждые три цифры дефисом.
  8. for v in digits {
  9. r += String(v)
  10. i = i + 1
  11. if i % 3 == 0 {
  12. r += "-"
  13. }
  14. }
  15. // Исключаем дефис в конце.
  16. if r.hasSuffix("-") {
  17. r = String(r.dropLast(1))
  18. }
  19. return r
  20. }
  21. }