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.
文字列内のテキストを区切るためにコンマを追加するにはどうすればよいですか
次の文字列があるとします。
local s = "some text here"
その文字列(空白なし)を次のように変換したい:
local t = "some,text,here"
どんな助けでも大歓迎です..
gsub() を使用できます
t = string.gsub(s, " ", ",")