从Algorithmia响应中提取数据

时间:2017-01-15 01:01:56

标签: ios algorithm swift3 algorithmia

我目前正在制作一个应用程序,将数据发送到Algorithmia算法进行处理。然后,以这种形式将找到文件的位置的响应发送回应用程序:

Optional({
output = "data://.algo/deeplearning/AlgorithmName/temp/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx.png";})

我需要一种方法来提取随机生成的' xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx.png'回应的部分。它需要存储在我稍后将使用的字符串中。

1 个答案:

答案 0 :(得分:1)

最终代码:

if let json = response as? [String: Any] {
                print(json)

                let filePath = json["output"] as? String
                print("File path: \(filePath!)")

                let uwFilePath = filePath!

                let index = uwFilePath.index(uwFilePath.startIndex, offsetBy: 57)
                self.imageFileName = uwFilePath.substring(from: index)

                print(self.imageFileName)
            }

imageFileName存储最终文件名以供以后使用。 输出字符串的开头部分也被切断了。