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.
複数の区切り文字で文字列を分割するにはどうすればよいですか。(Jクエリ)
var mystring = "(this is my string!)";
私が試してみました
var words = mystring.split(/[\s(!)]/);
しかし、それは機能しません
私は単語(配列)の内容がなりたいと思っていました [ ( , this , is , my , string , ! , ) ]
[ ( , this , is , my , string , ! , ) ]
すべての助けに感謝します。ありがとう