-2

如何使用 Ruby 获取字符串的一部分?我想image/jpeg从此字符串中获取值:

"Content-Disposition: form-data; name='arquivo'; filename='the_last_in_line.jpg' Content-Type: image/jpeg"
4

1 回答 1

3

你试过什么?您可以对此类任务使用正则表达式:

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"
于 2013-02-24T14:12:40.893 回答