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.
するとが"www.example.com/test/test".gsub('/test','')得られます"www.example.com"が、望ましい結果は"www.example.com/test"です。つまり、最後のものだけ"/test"を削除する必要があります。どうすればそれを達成できますか?
"www.example.com/test/test".gsub('/test','')
"www.example.com"
"www.example.com/test"
"/test"
使用する"www.example.com/test/test".gsub(/\/test$/,'')
"www.example.com/test/test".gsub(/\/test$/,'')
コメント後にUPDATE
で動作している場合のイベントは、一度だけ置き換えたいため、より適切と思われますgsub。sub
gsub
sub
"www.example.com/test/test".sub(/\/test$/,'')
これを試して
"www.example.com/test/test".sub('/test','')