2022-08-16 10:39:05 +02:00
|
|
|
import Foundation
|
|
|
|
|
|
|
|
extension String {
|
|
|
|
|
|
|
|
var nonEmpty: String? {
|
|
|
|
self.isEmpty ? nil : self
|
|
|
|
}
|
|
|
|
|
|
|
|
var trimmed: String {
|
|
|
|
trimmingCharacters(in: .whitespacesAndNewlines)
|
|
|
|
}
|
|
|
|
|
|
|
|
func indented(by indentation: String) -> String {
|
|
|
|
components(separatedBy: "\n").joined(separator: "\n" + indentation)
|
|
|
|
}
|
|
|
|
|
|
|
|
var withoutEmptyLines: String {
|
|
|
|
components(separatedBy: "\n")
|
|
|
|
.filter { !$0.trimmed.isEmpty }
|
|
|
|
.joined(separator: "\n")
|
|
|
|
}
|
|
|
|
|
|
|
|
func dropAfterLast(_ separator: String) -> String {
|
2022-08-29 13:33:48 +02:00
|
|
|
guard contains(separator) else {
|
|
|
|
return self
|
|
|
|
}
|
|
|
|
return components(separatedBy: separator).dropLast().joined(separator: separator)
|
2022-08-16 10:39:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func dropBeforeFirst(_ separator: String) -> String {
|
2022-08-29 13:33:48 +02:00
|
|
|
guard contains(separator) else {
|
|
|
|
return self
|
|
|
|
}
|
|
|
|
return components(separatedBy: separator).dropFirst().joined(separator: separator)
|
2022-08-16 10:39:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func lastComponentAfter(_ separator: String) -> String {
|
|
|
|
components(separatedBy: separator).last!
|
|
|
|
}
|
|
|
|
|
2022-08-26 17:40:51 +02:00
|
|
|
/**
|
|
|
|
Insert the new content before the last occurence of the specified separator.
|
|
|
|
|
|
|
|
If the separator does not appear in the string, then the new content is simply appended.
|
|
|
|
*/
|
2022-08-16 10:39:05 +02:00
|
|
|
func insert(_ content: String, beforeLast separator: String) -> String {
|
|
|
|
let parts = components(separatedBy: separator)
|
2022-08-26 17:40:51 +02:00
|
|
|
guard parts.count > 1 else {
|
|
|
|
return self + content
|
|
|
|
}
|
2022-08-16 10:39:05 +02:00
|
|
|
return parts.dropLast().joined(separator: separator) + content + separator + parts.last!
|
|
|
|
}
|
2022-08-17 10:34:14 +02:00
|
|
|
|
|
|
|
func dropAfterFirst<T>(_ separator: T) -> String where T: StringProtocol {
|
|
|
|
components(separatedBy: separator).first!
|
|
|
|
}
|
|
|
|
|
|
|
|
func between(_ start: String, and end: String) -> String {
|
|
|
|
dropBeforeFirst(start).dropAfterFirst(end)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extension Substring {
|
|
|
|
|
|
|
|
func between(_ start: String, and end: String) -> String {
|
|
|
|
components(separatedBy: start).last!
|
|
|
|
.components(separatedBy: end).first!
|
|
|
|
}
|
2022-08-16 10:39:05 +02:00
|
|
|
}
|
2022-08-26 17:40:51 +02:00
|
|
|
|
|
|
|
extension String {
|
|
|
|
|
|
|
|
func createFolderAndWrite(to url: URL) throws {
|
|
|
|
try data(using: .utf8)!.createFolderAndWrite(to: url)
|
|
|
|
}
|
|
|
|
}
|