使Ruby字符串的行为类似于文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使Ruby字符串的行为类似于文件相关的知识,希望对你有一定的参考价值。

This is handy for testing, when you need to simulate an open file or open URI. Why, and the Pickaxe book, have better examples
  1. require 'stringio'
  2.  
  3. sio=StringIO.new('acts like a file')
  4. puts sio.pos # => 0
  5. sio.pos= sio.length - 4
  6. puts sio.read # => 'file'

以上是关于使Ruby字符串的行为类似于文件的主要内容,如果未能解决你的问题,请参考以下文章

使 Pandas groupby 的行为类似于 itertools groupby

使 JFormattedTextField 的行为类似于 ATM 输入

如何使任意 UIAccessibilityElement 的行为类似于 VoiceOver 的 UISwitch?

使下拉类型 Combobox 的行为类似于 Edit 控件

如何使复选框的行为类似于角度 6 中的单选按钮?

如何使 UIPageViewController 过渡行为类似于 IOS7 中的交互式弹出过渡样式