2019/03/27 2019/03/30 ホーム > iOS > encoding時に特定の文字をallowの条件から外す B! let text = "ホゲホゲ" var cs = CharacterSet.urlQueryAllowed // encodingしたくない記号 cs.remove("&") cs.remove("=") guard let encodedText = text.addingPercentEncoding(withAllowedCharacters: cs) else { return } ホームiOS Swift