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.
いくつかの UTF-8 文字列を結合したいのですが、何かアイデアはありますか?
例えば:
入力: Š + ل + ا + ã 出力: スラーマ
入力: Š + ل + ا + ã
出力: スラーマ
Javascriptでは次のことができますvar output = 'س + ل + ا + م'.split(' + ').join('');。split関数で文字を分離しているものを置き換えるだけです。
var output = 'س + ل + ا + م'.split(' + ').join('');