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.
文字列がある場合:string =<.one><。two>three<.four> [:five]、この文字列を操作して、パターン「<..>」内のすべてを削除するにはどうすればよいですか。出力を返したいのですが。文字列=three[:five]
ありがとう
"<.one><.two>three<.four>[:five]".gsub(/<.+?>/, '')
irb(main):002:0> '<.one><.two>three<.four>[:five]'.gsub(/<[^>]*>/,'') => "three[:five]"