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.
特定の文字の後の文字列内のすべてのテキストを削除する最良の方法は何ですか? 私の場合は "=" で、私の場合は別の文字の後に a,ですが、間にテキストを入れておきますか?
,
=これを維持し、
$a="some text =keep this,but not this" $a.split('=')[1].split(',')[0]
戻り値
keep this