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.
我需要在 rails 1.2.5 应用程序中清理一个字符串并从中删除每个 html 标记。
我想我需要类似 html_safe 的东西,但我不知道那个 rails 版本中是否有类似的东西。
任何的想法?提前致谢。
使用 strip_tags 从字符串中删除 html 标签
>> strip_tags('<p>hello</p>') # 'hello'