我需要刪除一個字符串中的HTML標記並僅保留其中一種類型。我有一個包含這個字符串: <!-- comment --> <div id="55"> text </div> <span name=annotation value=125> 2 text </span> <p id="55"> text 3</p><span>text 4 <span>
,我需要這樣的: text <span nam
我在我的Rails 3應用程序中使用form_tag未綁定到任何模型的表單。據我所知(儘管請糾正我,如果我錯了),這幫助不具有相同的環境衛生益處的模型綁定form_for幫手,所以我手動殺毒所有輸入到表格。 這裏是我的控制器(只是基礎知識): include ActionView::Helpers::TextHelper
class MyController < ApplicationCont