Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
いくつかの文字を含む NSString 変数があります " と '。それで、Sqlite3 のテーブルに挿入するパラメーターとしてどのように使用できますか?助けてくれてありがとう:)
2 つの引用符で引用符をエスケープします。二重引用符を置き換える必要はありません
''
\ 文字をその前に置くことにより、特殊文字で NSString を初期化できます。 例えば:
NSString *string = @"This is \" and this is \'";