mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
21 lines
427 B
Swift
21 lines
427 B
Swift
//
|
|
// String+RSWeb.swift
|
|
// RSWeb
|
|
//
|
|
// Created by Brent Simmons on 1/13/18.
|
|
// Copyright © 2018 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public extension String {
|
|
|
|
public func encodedForURLQuery() -> String? {
|
|
|
|
guard let encodedString = addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed) else {
|
|
return nil
|
|
}
|
|
return encodedString.replacingOccurrences(of: "&", with: "%38")
|
|
}
|
|
}
|