// StringExtensions.swift - Copyright 2024 SwifterSwift
|
|
#if canImport(Foundation)
|
import Foundation
|
#endif
|
|
#if canImport(UIKit)
|
import UIKit
|
#endif
|
|
#if canImport(AppKit)
|
import AppKit
|
#endif
|
|
#if canImport(CoreGraphics)
|
import CoreGraphics
|
#endif
|
|
// MARK: - Properties
|
|
public extension String {
|
#if canImport(Foundation)
|
/// SwifterSwift: String decoded from base64 (if applicable).
|
///
|
/// "SGVsbG8gV29ybGQh".base64Decoded = Optional("Hello World!")
|
///
|
var base64Decoded: String? {
|
if let data = Data(base64Encoded: self,
|
options: .ignoreUnknownCharacters) {
|
return String(data: data, encoding: .utf8)
|
}
|
|
let remainder = count % 4
|
|
var padding = ""
|
if remainder > 0 {
|
padding = String(repeating: "=", count: 4 - remainder)
|
}
|
|
guard let data = Data(base64Encoded: self + padding,
|
options: .ignoreUnknownCharacters) else { return nil }
|
|
return String(data: data, encoding: .utf8)
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: String encoded in base64 (if applicable).
|
///
|
/// "Hello World!".base64Encoded -> Optional("SGVsbG8gV29ybGQh")
|
///
|
var base64Encoded: String? {
|
// https://github.com/Reza-Rg/Base64-Swift-Extension/blob/master/Base64.swift
|
let plainData = data(using: .utf8)
|
return plainData?.base64EncodedString()
|
}
|
#endif
|
|
/// SwifterSwift: Array of characters of a string.
|
var charactersArray: [Character] {
|
return Array(self)
|
}
|
|
#if canImport(Foundation)
|
/// SwifterSwift: CamelCase of string.
|
///
|
/// "sOme vAriable naMe".camelCased -> "someVariableName"
|
///
|
var camelCased: String {
|
let source = lowercased()
|
let first = source[..<source.index(after: source.startIndex)]
|
if source.contains(" ") {
|
let connected = source.capitalized.replacingOccurrences(of: " ", with: "")
|
let camel = connected.replacingOccurrences(of: "\n", with: "")
|
let rest = String(camel.dropFirst())
|
return first + rest
|
}
|
let rest = String(source.dropFirst())
|
return first + rest
|
}
|
#endif
|
|
/// SwifterSwift: Check if string contains one or more emojis.
|
///
|
/// "Hello 😀".containEmoji -> true
|
///
|
var containEmoji: Bool {
|
// http://stackoverflow.com/questions/30757193/find-out-if-character-in-string-is-emoji
|
for scalar in unicodeScalars {
|
switch scalar.value {
|
case 0x1F600...0x1F64F, // Emoticons
|
0x1F300...0x1F5FF, // Misc Symbols and Pictographs
|
0x1F680...0x1F6FF, // Transport and Map
|
0x1F1E6...0x1F1FF, // Regional country flags
|
0x2600...0x26FF, // Misc symbols
|
0x2700...0x27BF, // Dingbats
|
0xE0020...0xE007F, // Tags
|
0xFE00...0xFE0F, // Variation Selectors
|
0x1F900...0x1F9FF, // Supplemental Symbols and Pictographs
|
127_000...127_600, // Various asian characters
|
65024...65039, // Variation selector
|
9100...9300, // Misc items
|
8400...8447: // Combining Diacritical Marks for Symbols
|
return true
|
default:
|
continue
|
}
|
}
|
return false
|
}
|
|
/// SwifterSwift: First character of string (if applicable).
|
///
|
/// "Hello".firstCharacterAsString -> Optional("H")
|
/// "".firstCharacterAsString -> nil
|
///
|
var firstCharacterAsString: String? {
|
guard let first else { return nil }
|
return String(first)
|
}
|
|
/// SwifterSwift: Check if string contains one or more letters.
|
///
|
/// "123abc".hasLetters -> true
|
/// "123".hasLetters -> false
|
///
|
var hasLetters: Bool {
|
return rangeOfCharacter(from: .letters, options: .numeric, range: nil) != nil
|
}
|
|
/// SwifterSwift: Check if string contains one or more numbers.
|
///
|
/// "abcd".hasNumbers -> false
|
/// "123abc".hasNumbers -> true
|
///
|
var hasNumbers: Bool {
|
return rangeOfCharacter(from: .decimalDigits, options: .literal, range: nil) != nil
|
}
|
|
/// SwifterSwift: Check if string contains only letters.
|
///
|
/// "abc".isAlphabetic -> true
|
/// "123abc".isAlphabetic -> false
|
///
|
var isAlphabetic: Bool {
|
let hasLetters = rangeOfCharacter(from: .letters, options: .numeric, range: nil) != nil
|
let hasNumbers = rangeOfCharacter(from: .decimalDigits, options: .literal, range: nil) != nil
|
return hasLetters && !hasNumbers
|
}
|
|
/// SwifterSwift: Check if string contains at least one letter and one number.
|
///
|
/// // useful for passwords
|
/// "123abc".isAlphaNumeric -> true
|
/// "abc".isAlphaNumeric -> false
|
///
|
var isAlphaNumeric: Bool {
|
let hasLetters = rangeOfCharacter(from: .letters, options: .numeric, range: nil) != nil
|
let hasNumbers = rangeOfCharacter(from: .decimalDigits, options: .literal, range: nil) != nil
|
let comps = components(separatedBy: .alphanumerics)
|
return comps.joined(separator: "").count == 0 && hasLetters && hasNumbers
|
}
|
|
/// SwifterSwift: Check if string is palindrome.
|
///
|
/// "abcdcba".isPalindrome -> true
|
/// "Mom".isPalindrome -> true
|
/// "A man a plan a canal, Panama!".isPalindrome -> true
|
/// "Mama".isPalindrome -> false
|
///
|
var isPalindrome: Bool {
|
let letters = filter(\.isLetter)
|
guard !letters.isEmpty else { return false }
|
let midIndex = letters.index(letters.startIndex, offsetBy: letters.count / 2)
|
let firstHalf = letters[letters.startIndex..<midIndex]
|
let secondHalf = letters[midIndex..<letters.endIndex].reversed()
|
return !zip(firstHalf, secondHalf).contains(where: { $0.lowercased() != $1.lowercased() })
|
}
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Check if string is valid email format.
|
///
|
/// - Note: Note that this property does not validate the email address against an email server. It merely attempts
|
/// to determine whether its format is suitable for an email address.
|
///
|
/// "john@doe.com".isValidEmail -> true
|
///
|
var isValidEmail: Bool {
|
// http://emailregex.com/
|
let regex =
|
"^(?:[\\p{L}0-9!#$%\\&'*+/=?\\^_`{|}~-]+(?:\\.[\\p{L}0-9!#$%\\&'*+/=?\\^_`{|}~-]+)*|\"(?:[\\x01-\\x08\\x0b\\x0c\\x0e-\\x1f\\x21\\x23-\\x5b\\x5d-\\x7f]|\\\\[\\x01-\\x09\\x0b\\x0c\\x0e-\\x7f])*\")@(?:(?:[\\p{L}0-9](?:[a-z0-9-]*[\\p{L}0-9])?\\.)+[\\p{L}0-9](?:[\\p{L}0-9-]*[\\p{L}0-9])?|\\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[\\p{L}0-9-]*[\\p{L}0-9]:(?:[\\x01-\\x08\\x0b\\x0c\\x0e-\\x1f\\x21-\\x5a\\x53-\\x7f]|\\\\[\\x01-\\x09\\x0b\\x0c\\x0e-\\x7f])+)\\])$"
|
return range(of: regex, options: .regularExpression, range: nil, locale: nil) != nil
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Check if string is a valid URL.
|
///
|
/// "https://google.com".isValidUrl -> true
|
///
|
var isValidUrl: Bool {
|
return URL(string: self) != nil
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Check if string is a valid schemed URL.
|
///
|
/// "https://google.com".isValidSchemedUrl -> true
|
/// "google.com".isValidSchemedUrl -> false
|
///
|
var isValidSchemedUrl: Bool {
|
guard let url = URL(string: self) else { return false }
|
return url.scheme != nil
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Check if string is a valid https URL.
|
///
|
/// "https://google.com".isValidHttpsUrl -> true
|
///
|
var isValidHttpsUrl: Bool {
|
guard let url = URL(string: self) else { return false }
|
return url.scheme == "https"
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Check if string is a valid http URL.
|
///
|
/// "http://google.com".isValidHttpUrl -> true
|
///
|
var isValidHttpUrl: Bool {
|
guard let url = URL(string: self) else { return false }
|
return url.scheme == "http"
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Check if string is a valid file URL.
|
///
|
/// "file://Documents/file.txt".isValidFileUrl -> true
|
///
|
var isValidFileUrl: Bool {
|
return URL(string: self)?.isFileURL ?? false
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Check if string is a valid Swift number. Note: In North America, "." is the decimal separator,
|
/// while in many parts of Europe "," is used.
|
///
|
/// "123".isNumeric -> true
|
/// "1.3".isNumeric -> true (en_US)
|
/// "1,3".isNumeric -> true (fr_FR)
|
/// "abc".isNumeric -> false
|
///
|
var isNumeric: Bool {
|
let scanner = Scanner(string: self)
|
scanner.locale = NSLocale.current
|
#if os(Linux) || targetEnvironment(macCatalyst)
|
return scanner.scanDecimal() != nil && scanner.isAtEnd
|
#else
|
return scanner.scanDecimal(nil) && scanner.isAtEnd
|
#endif
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Check if string only contains digits.
|
///
|
/// "123".isDigits -> true
|
/// "1.3".isDigits -> false
|
/// "abc".isDigits -> false
|
///
|
var isDigits: Bool {
|
return CharacterSet.decimalDigits.isSuperset(of: CharacterSet(charactersIn: self))
|
}
|
#endif
|
|
/// SwifterSwift: Last character of string (if applicable).
|
///
|
/// "Hello".lastCharacterAsString -> Optional("o")
|
/// "".lastCharacterAsString -> nil
|
///
|
var lastCharacterAsString: String? {
|
guard let last else { return nil }
|
return String(last)
|
}
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Latinized string.
|
///
|
/// "Hèllö Wórld!".latinized -> "Hello World!"
|
///
|
var latinized: String {
|
return folding(options: .diacriticInsensitive, locale: Locale.current)
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Bool value from string (if applicable).
|
///
|
/// "1".bool -> true
|
/// "False".bool -> false
|
/// "Hello".bool = nil
|
///
|
var bool: Bool? {
|
let selfLowercased = trimmingCharacters(in: .whitespacesAndNewlines).lowercased()
|
switch selfLowercased {
|
case "true", "yes", "1":
|
return true
|
case "false", "no", "0":
|
return false
|
default:
|
return nil
|
}
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Date object from "yyyy-MM-dd" formatted string.
|
///
|
/// "2007-06-29".date -> Optional(Date)
|
///
|
var date: Date? {
|
let selfLowercased = trimmingCharacters(in: .whitespacesAndNewlines).lowercased()
|
let formatter = DateFormatter()
|
formatter.timeZone = TimeZone.current
|
formatter.dateFormat = "yyyy-MM-dd"
|
return formatter.date(from: selfLowercased)
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Date object from "yyyy-MM-dd HH:mm:ss" formatted string.
|
///
|
/// "2007-06-29 14:23:09".dateTime -> Optional(Date)
|
///
|
var dateTime: Date? {
|
let selfLowercased = trimmingCharacters(in: .whitespacesAndNewlines).lowercased()
|
let formatter = DateFormatter()
|
formatter.timeZone = TimeZone.current
|
formatter.dateFormat = "yyyy-MM-dd HH:mm:ss"
|
return formatter.date(from: selfLowercased)
|
}
|
#endif
|
|
/// SwifterSwift: Integer value from string (if applicable).
|
///
|
/// "101".int -> 101
|
///
|
var int: Int? {
|
return Int(self)
|
}
|
|
/// SwifterSwift: Lorem ipsum string of given length.
|
///
|
/// - Parameter length: number of characters to limit lorem ipsum to (default is 445 - full lorem ipsum).
|
/// - Returns: Lorem ipsum dolor sit amet... string.
|
static func loremIpsum(ofLength length: Int = 445) -> String {
|
guard length > 0 else { return "" }
|
|
// https://www.lipsum.com/
|
let loremIpsum = """
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
|
"""
|
if loremIpsum.count > length {
|
return String(loremIpsum[loremIpsum.startIndex..<loremIpsum.index(loremIpsum.startIndex, offsetBy: length)])
|
}
|
return loremIpsum
|
}
|
|
#if canImport(Foundation)
|
/// SwifterSwift: URL from string (if applicable).
|
///
|
/// "https://google.com".url -> URL(string: "https://google.com")
|
/// "not url".url -> nil
|
///
|
var url: URL? {
|
return URL(string: self)
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: String with no spaces or new lines in beginning and end.
|
///
|
/// " hello \n".trimmed -> "hello"
|
///
|
var trimmed: String {
|
return trimmingCharacters(in: .whitespacesAndNewlines)
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Readable string from a URL string.
|
///
|
/// "it's%20easy%20to%20decode%20strings".urlDecoded -> "it's easy to decode strings"
|
///
|
var urlDecoded: String {
|
return removingPercentEncoding ?? self
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: URL escaped string.
|
///
|
/// "it's easy to encode strings".urlEncoded -> "it's%20easy%20to%20encode%20strings"
|
///
|
var urlEncoded: String {
|
return addingPercentEncoding(withAllowedCharacters: .urlHostAllowed)!
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Escaped string for inclusion in a regular expression pattern.
|
///
|
/// "hello ^$ there" -> "hello \\^\\$ there"
|
///
|
var regexEscaped: String {
|
return NSRegularExpression.escapedPattern(for: self)
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: String without spaces and new lines.
|
///
|
/// " \n Swifter \n Swift ".withoutSpacesAndNewLines -> "SwifterSwift"
|
///
|
var withoutSpacesAndNewLines: String {
|
return replacingOccurrences(of: " ", with: "").replacingOccurrences(of: "\n", with: "")
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Check if the given string contains only white spaces.
|
var isWhitespace: Bool {
|
return trimmingCharacters(in: .whitespacesAndNewlines).isEmpty
|
}
|
#endif
|
|
#if os(iOS) || os(tvOS)
|
/// SwifterSwift: Check if the given string spelled correctly.
|
@MainActor
|
var isSpelledCorrectly: Bool {
|
let checker = UITextChecker()
|
let range = NSRange(startIndex..<endIndex, in: self)
|
|
let misspelledRange = checker.rangeOfMisspelledWord(
|
in: self,
|
range: range,
|
startingAt: 0,
|
wrap: false,
|
language: Locale.preferredLanguages.first ?? "en")
|
return misspelledRange.location == NSNotFound
|
}
|
#endif
|
}
|
|
// MARK: - Methods
|
|
public extension String {
|
#if canImport(Foundation)
|
/// SwifterSwift: Float value from string (if applicable).
|
///
|
/// - Parameter locale: Locale (default is Locale.current)
|
/// - Returns: Optional Float value from given string.
|
func float(locale: Locale = .current) -> Float? {
|
let formatter = NumberFormatter()
|
formatter.locale = locale
|
formatter.allowsFloats = true
|
return formatter.number(from: self)?.floatValue
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Double value from string (if applicable).
|
///
|
/// - Parameter locale: Locale (default is Locale.current)
|
/// - Returns: Optional Double value from given string.
|
func double(locale: Locale = .current) -> Double? {
|
let formatter = NumberFormatter()
|
formatter.locale = locale
|
formatter.allowsFloats = true
|
return formatter.number(from: self)?.doubleValue
|
}
|
#endif
|
|
#if canImport(CoreGraphics) && canImport(Foundation)
|
/// SwifterSwift: CGFloat value from string (if applicable).
|
///
|
/// - Parameter locale: Locale (default is Locale.current)
|
/// - Returns: Optional CGFloat value from given string.
|
func cgFloat(locale: Locale = .current) -> CGFloat? {
|
let formatter = NumberFormatter()
|
formatter.locale = locale
|
formatter.allowsFloats = true
|
return formatter.number(from: self) as? CGFloat
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Array of strings separated by new lines.
|
///
|
/// "Hello\ntest".lines() -> ["Hello", "test"]
|
///
|
/// - Returns: Strings separated by new lines.
|
func lines() -> [String] {
|
var result = [String]()
|
enumerateLines { line, _ in
|
result.append(line)
|
}
|
return result
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Returns a localized string, with an optional comment for translators.
|
///
|
/// "Hello world".localized() -> Hallo Welt
|
///
|
/// - Parameter comment: Optional comment for translators.
|
/// - Returns: Localized string.
|
func localized(comment: String = "") -> String {
|
return NSLocalizedString(self, comment: comment)
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Returns a format localized string.
|
///
|
/// "%d Swift %d Objective-C".formatLocalized(1, 2) -> 1 Swift 2 Objective-C
|
///
|
/// - Parameters:
|
/// - comment: Optional comment for translators.
|
/// - arguments: Arguments used by format.
|
/// - Returns: Format localized string.
|
func formatLocalized(comment: String = "", _ arguments: (any CVarArg)...) -> String {
|
let format = NSLocalizedString(self, comment: comment)
|
return String(format: format, arguments: arguments)
|
}
|
#endif
|
|
/// SwifterSwift: The most common character in string.
|
///
|
/// "This is a test, since e is appearing everywhere e should be the common character".mostCommonCharacter() -> "e"
|
///
|
/// - Returns: The most common character.
|
func mostCommonCharacter() -> Character? {
|
let mostCommon = withoutSpacesAndNewLines.reduce(into: [Character: Int]()) {
|
let count = $0[$1] ?? 0
|
$0[$1] = count + 1
|
}.max { $0.1 < $1.1 }?.key
|
|
return mostCommon
|
}
|
|
/// SwifterSwift: Array with unicodes for all characters in a string.
|
///
|
/// "SwifterSwift".unicodeArray() -> [83, 119, 105, 102, 116, 101, 114, 83, 119, 105, 102, 116]
|
///
|
/// - Returns: The unicodes for all characters in a string.
|
func unicodeArray() -> [Int] {
|
return unicodeScalars.map { Int($0.value) }
|
}
|
|
#if canImport(Foundation)
|
/// SwifterSwift: an array of all words in a string.
|
///
|
/// "Swift is amazing".words() -> ["Swift", "is", "amazing"]
|
///
|
/// - Returns: The words contained in a string.
|
func words() -> [String] {
|
// https://stackoverflow.com/questions/42822838
|
let characterSet = CharacterSet.whitespacesAndNewlines.union(.punctuationCharacters)
|
let comps = components(separatedBy: characterSet)
|
return comps.filter { !$0.isEmpty }
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Count of words in a string.
|
///
|
/// "Swift is amazing".wordsCount() -> 3
|
///
|
/// - Returns: The count of words contained in a string.
|
func wordCount() -> Int {
|
// https://stackoverflow.com/questions/42822838
|
let characterSet = CharacterSet.whitespacesAndNewlines.union(.punctuationCharacters)
|
let comps = components(separatedBy: characterSet)
|
let words = comps.filter { !$0.isEmpty }
|
return words.count
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Transforms the string into a slug string.
|
///
|
/// "Swift is amazing".toSlug() -> "swift-is-amazing"
|
///
|
/// - Returns: The string in slug format.
|
func toSlug() -> String {
|
let lowercased = lowercased()
|
let latinized = lowercased.folding(options: .diacriticInsensitive, locale: Locale.current)
|
let withDashes = latinized.replacingOccurrences(of: " ", with: "-")
|
|
let alphanumerics = NSCharacterSet.alphanumerics
|
var filtered = withDashes.filter {
|
guard String($0) != "-" else { return true }
|
guard String($0) != "&" else { return true }
|
return String($0).rangeOfCharacter(from: alphanumerics) != nil
|
}
|
|
while filtered.lastCharacterAsString == "-" {
|
filtered = String(filtered.dropLast())
|
}
|
|
while filtered.firstCharacterAsString == "-" {
|
filtered = String(filtered.dropFirst())
|
}
|
|
return filtered.replacingOccurrences(of: "--", with: "-")
|
}
|
#endif
|
|
/// SwifterSwift: Safely subscript string with index.
|
///
|
/// "Hello World!"[safe: 3] -> "l"
|
/// "Hello World!"[safe: 20] -> nil
|
///
|
/// - Parameter index: index.
|
subscript(safe index: Int) -> Character? {
|
guard index >= 0, index < count else { return nil }
|
return self[self.index(startIndex, offsetBy: index)]
|
}
|
|
/// SwifterSwift: Safely subscript string within a given range.
|
///
|
/// "Hello World!"[safe: 6..<11] -> "World"
|
/// "Hello World!"[safe: 21..<110] -> nil
|
///
|
/// - Parameter range: Range expression.
|
subscript(safe range: Range<Int>) -> String? {
|
guard range.lowerBound >= 0,
|
range.upperBound <= count else {
|
return nil
|
}
|
|
return String(self[range])
|
}
|
|
/// SwifterSwift: Safely subscript string within a given range.
|
///
|
/// "Hello World!"[safe: 6...11] -> "World!"
|
/// "Hello World!"[safe: 21...110] -> nil
|
///
|
/// - Parameter range: Range expression.
|
subscript(safe range: ClosedRange<Int>) -> String? {
|
guard range.lowerBound >= 0,
|
range.upperBound < count else {
|
return nil
|
}
|
|
return String(self[range])
|
}
|
|
/// SwifterSwift: Safely subscript string within a given range.
|
///
|
/// "Hello World!"[safe: ..<5] -> "Hello"
|
/// "Hello World!"[safe: ..<(-110)] -> nil
|
///
|
/// - Parameter range: Range expression.
|
subscript(safe range: PartialRangeUpTo<Int>) -> String? {
|
guard range.upperBound >= 0,
|
range.upperBound <= count else {
|
return nil
|
}
|
|
return String(self[range])
|
}
|
|
/// SwifterSwift: Safely subscript string within a given range.
|
///
|
/// "Hello World!"[safe: ...10] -> "Hello World"
|
/// "Hello World!"[safe: ...110] -> nil
|
///
|
/// - Parameter range: Range expression.
|
subscript(safe range: PartialRangeThrough<Int>) -> String? {
|
guard range.upperBound >= 0,
|
range.upperBound < count else {
|
return nil
|
}
|
|
return String(self[range])
|
}
|
|
/// SwifterSwift: Safely subscript string within a given range.
|
///
|
/// "Hello World!"[safe: 6...] -> "World!"
|
/// "Hello World!"[safe: 50...] -> nil
|
///
|
/// - Parameter range: Range expression.
|
subscript(safe range: PartialRangeFrom<Int>) -> String? {
|
guard range.lowerBound >= 0,
|
range.lowerBound < count else {
|
return nil
|
}
|
|
return String(self[range])
|
}
|
|
#if os(iOS) || os(macOS)
|
/// SwifterSwift: Copy string to global pasteboard.
|
///
|
/// "SomeText".copyToPasteboard() // copies "SomeText" to pasteboard
|
///
|
func copyToPasteboard() {
|
#if os(iOS)
|
UIPasteboard.general.string = self
|
#elseif os(macOS)
|
NSPasteboard.general.clearContents()
|
NSPasteboard.general.setString(self, forType: .string)
|
#endif
|
}
|
#endif
|
|
/// SwifterSwift: Converts string format to CamelCase.
|
///
|
/// var str = "sOme vaRiabLe Name"
|
/// str.camelize()
|
/// print(str) // prints "someVariableName"
|
///
|
@discardableResult
|
mutating func camelize() -> String {
|
let source = lowercased()
|
let first = source[..<source.index(after: source.startIndex)]
|
if source.contains(" ") {
|
let connected = source.capitalized.replacingOccurrences(of: " ", with: "")
|
let camel = connected.replacingOccurrences(of: "\n", with: "")
|
let rest = String(camel.dropFirst())
|
self = first + rest
|
return self
|
}
|
let rest = String(source.dropFirst())
|
|
self = first + rest
|
return self
|
}
|
|
/// SwifterSwift: First character of string uppercased(if applicable) while keeping the original string.
|
///
|
/// "hello world".firstCharacterUppercased() -> "Hello world"
|
/// "".firstCharacterUppercased() -> ""
|
///
|
mutating func firstCharacterUppercased() {
|
guard let first else { return }
|
self = String(first).uppercased() + dropFirst()
|
}
|
|
/// SwifterSwift: Check if string contains only unique characters.
|
///
|
func hasUniqueCharacters() -> Bool {
|
guard count > 0 else { return false }
|
var uniqueChars = Set<String>()
|
for char in self {
|
if uniqueChars.contains(String(char)) { return false }
|
uniqueChars.insert(String(char))
|
}
|
return true
|
}
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Check if string contains one or more instance of substring.
|
///
|
/// "Hello World!".contain("O") -> false
|
/// "Hello World!".contain("o", caseSensitive: false) -> true
|
///
|
/// - Parameters:
|
/// - string: substring to search for.
|
/// - caseSensitive: set true for case sensitive search (default is true).
|
/// - Returns: true if string contains one or more instance of substring.
|
func contains(_ string: String, caseSensitive: Bool = true) -> Bool {
|
if !caseSensitive {
|
return range(of: string, options: .caseInsensitive) != nil
|
}
|
return range(of: string) != nil
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Count of substring in string.
|
///
|
/// "Hello World!".count(of: "o") -> 2
|
/// "Hello World!".count(of: "L", caseSensitive: false) -> 3
|
///
|
/// - Parameters:
|
/// - string: substring to search for.
|
/// - caseSensitive: set true for case sensitive search (default is true).
|
/// - Returns: count of appearance of substring in string.
|
func count(of string: String, caseSensitive: Bool = true) -> Int {
|
if !caseSensitive {
|
return lowercased().components(separatedBy: string.lowercased()).count - 1
|
}
|
return components(separatedBy: string).count - 1
|
}
|
#endif
|
|
/// SwifterSwift: Check if string ends with substring.
|
///
|
/// "Hello World!".ends(with: "!") -> true
|
/// "Hello World!".ends(with: "WoRld!", caseSensitive: false) -> true
|
///
|
/// - Parameters:
|
/// - suffix: substring to search if string ends with.
|
/// - caseSensitive: set true for case sensitive search (default is true).
|
/// - Returns: true if string ends with substring.
|
func ends(with suffix: String, caseSensitive: Bool = true) -> Bool {
|
if !caseSensitive {
|
return lowercased().hasSuffix(suffix.lowercased())
|
}
|
return hasSuffix(suffix)
|
}
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Latinize string.
|
///
|
/// var str = "Hèllö Wórld!"
|
/// str.latinize()
|
/// print(str) // prints "Hello World!"
|
///
|
@discardableResult
|
mutating func latinize() -> String {
|
self = folding(options: .diacriticInsensitive, locale: Locale.current)
|
return self
|
}
|
#endif
|
|
/// SwifterSwift: Random string of given length.
|
///
|
/// String.random(ofLength: 18) -> "u7MMZYvGo9obcOcPj8"
|
///
|
/// - Parameter length: number of characters in string.
|
/// - Returns: random string of given length.
|
static func random(ofLength length: Int) -> String {
|
guard length > 0 else { return "" }
|
let base = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
|
var randomString = ""
|
for _ in 1...length {
|
randomString.append(base.randomElement()!)
|
}
|
return randomString
|
}
|
|
/// SwifterSwift: Reverse string.
|
@discardableResult
|
mutating func reverse() -> String {
|
let chars: [Character] = reversed()
|
self = String(chars)
|
return self
|
}
|
|
/// SwifterSwift: Sliced string from a start index with length.
|
///
|
/// "Hello World".slicing(from: 6, length: 5) -> "World"
|
///
|
/// - Parameters:
|
/// - index: string index the slicing should start from.
|
/// - length: amount of characters to be sliced after given index.
|
/// - Returns: sliced substring of length number of characters (if applicable) (example: "Hello World".slicing(from:
|
/// 6, length: 5) -> "World").
|
func slicing(from index: Int, length: Int) -> String? {
|
guard length >= 0, index >= 0, index < count else { return nil }
|
guard index.advanced(by: length) <= count else {
|
return self[safe: index..<count]
|
}
|
guard length > 0 else { return "" }
|
return self[safe: index..<index.advanced(by: length)]
|
}
|
|
/// SwifterSwift: Slice given string from a start index with length (if applicable).
|
///
|
/// var str = "Hello World"
|
/// str.slice(from: 6, length: 5)
|
/// print(str) // prints "World"
|
///
|
/// - Parameters:
|
/// - index: string index the slicing should start from.
|
/// - length: amount of characters to be sliced after given index.
|
@discardableResult
|
mutating func slice(from index: Int, length: Int) -> String {
|
if let str = slicing(from: index, length: length) {
|
self = String(str)
|
}
|
return self
|
}
|
|
/// SwifterSwift: Slice given string from a start index to an end index (if applicable).
|
///
|
/// var str = "Hello World"
|
/// str.slice(from: 6, to: 11)
|
/// print(str) // prints "World"
|
///
|
/// - Parameters:
|
/// - start: string index the slicing should start from.
|
/// - end: string index the slicing should end at.
|
@discardableResult
|
mutating func slice(from start: Int, to end: Int) -> String {
|
guard end >= start else { return self }
|
if let str = self[safe: start..<end] {
|
self = str
|
}
|
return self
|
}
|
|
/// SwifterSwift: Slice given string from a start index (if applicable).
|
///
|
/// var str = "Hello World"
|
/// str.slice(at: 6)
|
/// print(str) // prints "World"
|
///
|
/// - Parameter index: string index the slicing should start from.
|
@discardableResult
|
mutating func slice(at index: Int) -> String {
|
guard index < count else { return self }
|
if let str = self[safe: index..<count] {
|
self = str
|
}
|
return self
|
}
|
|
/// SwifterSwift: Check if string starts with substring.
|
///
|
/// "hello World".starts(with: "h") -> true
|
/// "hello World".starts(with: "H", caseSensitive: false) -> true
|
///
|
/// - Parameters:
|
/// - suffix: substring to search if string starts with.
|
/// - caseSensitive: set true for case sensitive search (default is true).
|
/// - Returns: true if string starts with substring.
|
func starts(with prefix: String, caseSensitive: Bool = true) -> Bool {
|
if !caseSensitive {
|
return lowercased().hasPrefix(prefix.lowercased())
|
}
|
return hasPrefix(prefix)
|
}
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Date object from string of date format.
|
///
|
/// "2017-01-15".date(withFormat: "yyyy-MM-dd") -> Date set to Jan 15, 2017
|
/// "not date string".date(withFormat: "yyyy-MM-dd") -> nil
|
///
|
/// - Parameter format: date format.
|
/// - Returns: Date object from string (if applicable).
|
func date(withFormat format: String) -> Date? {
|
let dateFormatter = DateFormatter()
|
dateFormatter.dateFormat = format
|
return dateFormatter.date(from: self)
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Removes spaces and new lines in beginning and end of string.
|
///
|
/// var str = " \n Hello World \n\n\n"
|
/// str.trim()
|
/// print(str) // prints "Hello World"
|
///
|
@discardableResult
|
mutating func trim() -> String {
|
self = trimmingCharacters(in: CharacterSet.whitespacesAndNewlines)
|
return self
|
}
|
#endif
|
|
/// SwifterSwift: Truncate string (cut it to a given number of characters).
|
///
|
/// var str = "This is a very long sentence"
|
/// str.truncate(toLength: 14)
|
/// print(str) // prints "This is a very..."
|
///
|
/// - Parameters:
|
/// - toLength: maximum number of characters before cutting.
|
/// - trailing: string to add at the end of truncated string (default is "...").
|
@discardableResult
|
mutating func truncate(toLength length: Int, trailing: String? = "...") -> String {
|
guard length > 0 else { return self }
|
if count > length {
|
self = self[startIndex..<index(startIndex, offsetBy: length)] + (trailing ?? "")
|
}
|
return self
|
}
|
|
/// SwifterSwift: Truncated string (limited to a given number of characters).
|
///
|
/// "This is a very long sentence".truncated(toLength: 14) -> "This is a very..."
|
/// "Short sentence".truncated(toLength: 14) -> "Short sentence"
|
///
|
/// - Parameters:
|
/// - toLength: maximum number of characters before cutting.
|
/// - trailing: string to add at the end of truncated string.
|
/// - Returns: truncated string (this is an extr...).
|
func truncated(toLength length: Int, trailing: String? = "...") -> String {
|
guard 0..<count ~= length else { return self }
|
return self[startIndex..<index(startIndex, offsetBy: length)] + (trailing ?? "")
|
}
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Convert URL string to readable string.
|
///
|
/// var str = "it's%20easy%20to%20decode%20strings"
|
/// str.urlDecode()
|
/// print(str) // prints "it's easy to decode strings"
|
///
|
@discardableResult
|
mutating func urlDecode() -> String {
|
if let decoded = removingPercentEncoding {
|
self = decoded
|
}
|
return self
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Escape string.
|
///
|
/// var str = "it's easy to encode strings"
|
/// str.urlEncode()
|
/// print(str) // prints "it's%20easy%20to%20encode%20strings"
|
///
|
@discardableResult
|
mutating func urlEncode() -> String {
|
if let encoded = addingPercentEncoding(withAllowedCharacters: .urlHostAllowed) {
|
self = encoded
|
}
|
return self
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Verify if string matches the regex pattern.
|
///
|
/// - Parameter pattern: Pattern to verify.
|
/// - Returns: `true` if string matches the pattern.
|
func matches(pattern: String) -> Bool {
|
return range(of: pattern, options: .regularExpression, range: nil, locale: nil) != nil
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Verify if string matches the regex.
|
///
|
/// - Parameters:
|
/// - regex: Regex to verify.
|
/// - options: The matching options to use.
|
/// - Returns: `true` if string matches the regex.
|
func matches(regex: NSRegularExpression, options: NSRegularExpression.MatchingOptions = []) -> Bool {
|
let range = NSRange(startIndex..<endIndex, in: self)
|
return regex.firstMatch(in: self, options: options, range: range) != nil
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Overload Swift's 'contains' operator for matching regex pattern.
|
///
|
/// - Parameters:
|
/// - lhs: String to check on regex pattern.
|
/// - rhs: Regex pattern to match against.
|
/// - Returns: true if string matches the pattern.
|
static func ~= (lhs: String, rhs: String) -> Bool {
|
return rhs.range(of: lhs, options: .regularExpression) != nil
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Overload Swift's 'contains' operator for matching regex.
|
///
|
/// - Parameters:
|
/// - lhs: String to check on regex.
|
/// - rhs: Regex to match against.
|
/// - Returns: `true` if there is at least one match for the regex in the string.
|
static func ~= (lhs: NSRegularExpression, rhs: String) -> Bool {
|
let range = NSRange(rhs.startIndex..<rhs.endIndex, in: rhs)
|
return lhs.firstMatch(in: rhs, range: range) != nil
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Returns a new string in which all occurrences of a regex in a specified range of the receiver are
|
/// replaced by the template.
|
/// - Parameters:
|
/// - regex Regex to replace.
|
/// - template: The template to replace the regex.
|
/// - options: The matching options to use
|
/// - searchRange: The range in the receiver in which to search.
|
/// - Returns: A new string in which all occurrences of regex in searchRange of the receiver are replaced by
|
/// template.
|
func replacingOccurrences(
|
of regex: NSRegularExpression,
|
with template: String,
|
options: NSRegularExpression.MatchingOptions = [],
|
range searchRange: Range<String.Index>? = nil) -> String {
|
let range = NSRange(searchRange ?? startIndex..<endIndex, in: self)
|
return regex.stringByReplacingMatches(in: self, options: options, range: range, withTemplate: template)
|
}
|
#endif
|
|
/// SwifterSwift: Pad string to fit the length parameter size with another string in the start.
|
///
|
/// "hue".padStart(10) -> " hue"
|
/// "hue".padStart(10, with: "br") -> "brbrbrbhue"
|
///
|
/// - Parameters:
|
/// - length: The target length to pad.
|
/// - string: Pad string. Default is " ".
|
@discardableResult
|
mutating func padStart(_ length: Int, with string: String = " ") -> String {
|
self = paddingStart(length, with: string)
|
return self
|
}
|
|
/// SwifterSwift: Returns a string by padding to fit the length parameter size with another string in the start.
|
///
|
/// "hue".paddingStart(10) -> " hue"
|
/// "hue".paddingStart(10, with: "br") -> "brbrbrbhue"
|
///
|
/// - Parameters:
|
/// - length: The target length to pad.
|
/// - string: Pad string. Default is " ".
|
/// - Returns: The string with the padding on the start.
|
func paddingStart(_ length: Int, with string: String = " ") -> String {
|
guard count < length else { return self }
|
|
let padLength = length - count
|
if padLength < string.count {
|
return string[string.startIndex..<string.index(string.startIndex, offsetBy: padLength)] + self
|
} else {
|
var padding = string
|
while padding.count < padLength {
|
padding.append(string)
|
}
|
return padding[padding.startIndex..<padding.index(padding.startIndex, offsetBy: padLength)] + self
|
}
|
}
|
|
/// SwifterSwift: Pad string to fit the length parameter size with another string in the start.
|
///
|
/// "hue".padEnd(10) -> "hue "
|
/// "hue".padEnd(10, with: "br") -> "huebrbrbrb"
|
///
|
/// - Parameters:
|
/// - length: The target length to pad.
|
/// - string: Pad string. Default is " ".
|
@discardableResult
|
mutating func padEnd(_ length: Int, with string: String = " ") -> String {
|
self = paddingEnd(length, with: string)
|
return self
|
}
|
|
/// SwifterSwift: Returns a string by padding to fit the length parameter size with another string in the end.
|
///
|
/// "hue".paddingEnd(10) -> "hue "
|
/// "hue".paddingEnd(10, with: "br") -> "huebrbrbrb"
|
///
|
/// - Parameters:
|
/// - length: The target length to pad.
|
/// - string: Pad string. Default is " ".
|
/// - Returns: The string with the padding on the end.
|
func paddingEnd(_ length: Int, with string: String = " ") -> String {
|
guard count < length else { return self }
|
|
let padLength = length - count
|
if padLength < string.count {
|
return self + string[string.startIndex..<string.index(string.startIndex, offsetBy: padLength)]
|
} else {
|
var padding = string
|
while padding.count < padLength {
|
padding.append(string)
|
}
|
return self + padding[padding.startIndex..<padding.index(padding.startIndex, offsetBy: padLength)]
|
}
|
}
|
|
/// SwifterSwift: Removes given prefix from the string.
|
///
|
/// "Hello, World!".removingPrefix("Hello, ") -> "World!"
|
///
|
/// - Parameter prefix: Prefix to remove from the string.
|
/// - Returns: The string after prefix removing.
|
func removingPrefix(_ prefix: String) -> String {
|
guard hasPrefix(prefix) else { return self }
|
return String(dropFirst(prefix.count))
|
}
|
|
/// SwifterSwift: Removes given suffix from the string.
|
///
|
/// "Hello, World!".removingSuffix(", World!") -> "Hello"
|
///
|
/// - Parameter suffix: Suffix to remove from the string.
|
/// - Returns: The string after suffix removing.
|
func removingSuffix(_ suffix: String) -> String {
|
guard hasSuffix(suffix) else { return self }
|
return String(dropLast(suffix.count))
|
}
|
|
/// SwifterSwift: Adds prefix to the string.
|
///
|
/// "www.apple.com".withPrefix("https://") -> "https://www.apple.com"
|
///
|
/// - Parameter prefix: Prefix to add to the string.
|
/// - Returns: The string with the prefix prepended.
|
func withPrefix(_ prefix: String) -> String {
|
// https://www.hackingwithswift.com/articles/141/8-useful-swift-extensions
|
guard !hasPrefix(prefix) else { return self }
|
return prefix + self
|
}
|
}
|
|
// MARK: - Initializers
|
|
public extension String {
|
#if canImport(Foundation)
|
/// SwifterSwift: Create a new string from a base64 string (if applicable).
|
///
|
/// String(base64: "SGVsbG8gV29ybGQh") = "Hello World!"
|
/// String(base64: "hello") = nil
|
///
|
/// - Parameter base64: base64 string.
|
init?(base64: String) {
|
guard let decodedData = Data(base64Encoded: base64) else { return nil }
|
self.init(data: decodedData, encoding: .utf8)
|
}
|
#endif
|
}
|
|
#if !os(Linux)
|
|
// MARK: - NSAttributedString
|
|
public extension String {
|
#if os(iOS) || os(macOS)
|
/// SwifterSwift: Bold string.
|
var bold: NSAttributedString {
|
return NSMutableAttributedString(
|
string: self,
|
attributes: [.font: SFFont.boldSystemFont(ofSize: SFFont.systemFontSize)])
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Underlined string
|
var underline: NSAttributedString {
|
return NSAttributedString(string: self, attributes: [.underlineStyle: NSUnderlineStyle.single.rawValue])
|
}
|
#endif
|
|
#if canImport(Foundation)
|
/// SwifterSwift: Strikethrough string.
|
var strikethrough: NSAttributedString {
|
return NSAttributedString(
|
string: self,
|
attributes: [.strikethroughStyle: NSNumber(value: NSUnderlineStyle.single.rawValue as Int)])
|
}
|
#endif
|
|
#if os(iOS)
|
/// SwifterSwift: Italic string.
|
var italic: NSAttributedString {
|
return NSMutableAttributedString(
|
string: self,
|
attributes: [.font: UIFont.italicSystemFont(ofSize: UIFont.systemFontSize)])
|
}
|
#endif
|
|
#if canImport(AppKit) || canImport(UIKit)
|
/// SwifterSwift: Add color to string.
|
///
|
/// - Parameter color: text color.
|
/// - Returns: a NSAttributedString versions of string colored with given color.
|
func colored(with color: SFColor) -> NSAttributedString {
|
return NSMutableAttributedString(string: self, attributes: [.foregroundColor: color])
|
}
|
#endif
|
}
|
|
#endif
|
|
// MARK: - Operators
|
|
public extension String {
|
/// SwifterSwift: Repeat string multiple times.
|
///
|
/// 'bar' * 3 -> "barbarbar"
|
///
|
/// - Parameters:
|
/// - lhs: string to repeat.
|
/// - rhs: number of times to repeat character.
|
/// - Returns: new string with given string repeated n times.
|
static func * (lhs: String, rhs: Int) -> String {
|
guard rhs > 0 else { return "" }
|
return String(repeating: lhs, count: rhs)
|
}
|
|
/// SwifterSwift: Repeat string multiple times.
|
///
|
/// 3 * 'bar' -> "barbarbar"
|
///
|
/// - Parameters:
|
/// - lhs: number of times to repeat character.
|
/// - rhs: string to repeat.
|
/// - Returns: new string with given string repeated n times.
|
static func * (lhs: Int, rhs: String) -> String {
|
guard lhs > 0 else { return "" }
|
return String(repeating: rhs, count: lhs)
|
}
|
}
|
|
#if canImport(Foundation)
|
|
// MARK: - NSString extensions
|
|
public extension String {
|
/// SwifterSwift: NSString from a string.
|
var nsString: NSString {
|
return NSString(string: self)
|
}
|
|
/// SwifterSwift: The full `NSRange` of the string.
|
var fullNSRange: NSRange { NSRange(startIndex..<endIndex, in: self) }
|
|
/// SwifterSwift: NSString lastPathComponent.
|
var lastPathComponent: String {
|
return (self as NSString).lastPathComponent
|
}
|
|
/// SwifterSwift: NSString pathExtension.
|
var pathExtension: String {
|
return (self as NSString).pathExtension
|
}
|
|
/// SwifterSwift: NSString deletingLastPathComponent.
|
var deletingLastPathComponent: String {
|
return (self as NSString).deletingLastPathComponent
|
}
|
|
/// SwifterSwift: NSString deletingPathExtension.
|
var deletingPathExtension: String {
|
return (self as NSString).deletingPathExtension
|
}
|
|
/// SwifterSwift: NSString pathComponents.
|
var pathComponents: [String] {
|
return (self as NSString).pathComponents
|
}
|
|
/// SwifterSwift: Convert an `NSRange` into `Range<String.Index>`.
|
/// - Parameter nsRange: The `NSRange` within the receiver.
|
/// - Returns: The equivalent `Range<String.Index>` of `nsRange` found within the receiving string.
|
func range(from nsRange: NSRange) -> Range<Index> {
|
guard let range = Range(nsRange, in: self) else { fatalError("Failed to find range \(nsRange) in \(self)") }
|
return range
|
}
|
|
/// SwifterSwift: Convert a `Range<String.Index>` into `NSRange`.
|
/// - Parameter range: The `Range<String.Index>` within the receiver.
|
/// - Returns: The equivalent `NSRange` of `range` found within the receiving string.
|
func nsRange(from range: Range<Index>) -> NSRange {
|
return NSRange(range, in: self)
|
}
|
|
/// SwifterSwift: NSString appendingPathComponent(str: String).
|
///
|
/// - Note: This method only works with file paths (not, for example, string representations of URLs.
|
/// See NSString [appendingPathComponent(_:)](https://developer.apple.com/documentation/foundation/nsstring/1417069-appendingpathcomponent)
|
/// - Parameter str: the path component to append to the receiver.
|
/// - Returns: a new string made by appending aString to the receiver, preceded if necessary by a path separator.
|
func appendingPathComponent(_ str: String) -> String {
|
return (self as NSString).appendingPathComponent(str)
|
}
|
|
/// SwifterSwift: NSString appendingPathExtension(str: String).
|
///
|
/// - Parameter str: The extension to append to the receiver.
|
/// - Returns: a new string made by appending to the receiver an extension separator followed by ext (if
|
/// applicable).
|
func appendingPathExtension(_ str: String) -> String? {
|
return (self as NSString).appendingPathExtension(str)
|
}
|
|
/// SwifterSwift: Accesses a contiguous subrange of the collection’s elements.
|
/// - Parameter nsRange: A range of the collection’s indices. The bounds of the range must be valid indices of the
|
/// collection.
|
/// - Returns: A slice of the receiving string.
|
subscript(bounds: NSRange) -> Substring {
|
guard let range = Range(bounds, in: self) else { fatalError("Failed to find range \(bounds) in \(self)") }
|
return self[range]
|
}
|
}
|
|
#endif
|