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.
Rubyを使用して文字列の一部を取得するにはどうすればよいですか?この文字列から値を取得したいimage/jpeg:
image/jpeg
"Content-Disposition: form-data; name='arquivo'; filename='the_last_in_line.jpg' Content-Type: image/jpeg"
何を試しましたか?このようなタスクには正規表現を使用できます。
str='Content-Disposition: form-data; name="arquivo"; filename="the_last_in_line.jpg" Content-Type: image/jpeg' str[/Content-Type:\s*(\S*)/,1] # => "image/jpeg"