blob: 1e4c2ae456a02e98946891918aa3e47850b669f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//
// StringFormatter.swift
// MullvadVPN
//
// Created by Andreas Lif on 2022-06-10.
// Copyright © 2022 Mullvad VPN AB. All rights reserved.
//
import Foundation
struct StringFormatter {
static func formattedAccountNumber(from string: String) -> String {
return string.split(every: 4).joined(separator: " ")
}
}
|