How can I use strip_tags in regular Ruby code (non-rails)?(如何在常规 Ruby 代码(非 Rails)中使用 strip_tags?)
问题描述
我需要将 HTML 转换为纯文本.ActionView 的 SanitizeHelper 中有一个很好的功能,但我无法理解如何引用它并在简单的 test.rb 文件中使用它.
I need to turn HTML into plain text. There's a nice function that does that in ActionView's SanitizeHelper, but I have trouble understanding how I can reference it and use it in a simple test.rb file.
http://api.rubyonrails.org/classes/ActionView/Helpers/SanitizeHelper.html
我希望能够调用 strip_tags("<b>lol</b>") =>哈哈"
推荐答案
这个问题很老了,但我最近也遇到了同样的问题.我找到了一个简单的解决方案:gem sanitize.它很轻,工作正常,并且如果您需要它们还有其他选项.
The question is quite old, but I had the same problem recently. I found a simple solution: gem sanitize. It's light, works fine and has additional options if you need them.
Sanitize.clean("<b>lol</b>") #=> "lol"
这篇关于如何在常规 Ruby 代码(非 Rails)中使用 strip_tags?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在常规 Ruby 代码(非 Rails)中使用 strip_tags?
基础教程推荐
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01