If you are referring to the use of methods input, yes you can technically open system/libraries/Input.php, go to this code:
function _clean_input_data($str)
{
if (is_array($str))
{
$new_array = array();
foreach ($str as $key => $val)
{
$new_array[$this->_clean_input_keys($key)] = $this->_clean_input_data($val);
}
return $new_array;
}
if (get_magic_quotes_gpc())
{
$str = stripslashes($str);
}
if ($this->use_xss_clean === TRUE)
{
$str = $this->xss_clean($str);
}
if (strpos($str, "\r") !== FALSE)
{
$str = str_replace(array("\r\n", "\r"), "\n", $str);
}
return $str;
}
And right after cleaning xss, you can put your own filter function as follows:
if ($this->use_xss_clean === TRUE)
{
$str = $this->xss_clean($str);
}
$str = strip_tags($str);
, , CodeIgniter, . , , , , , , , .

CodeIgniter Form Validation, , php, , strip_tags:
$this->form_validation->set_rules('usertext', 'User Text', 'required|strip_tags');
, , , , , .