Use this tag for questions related to removing tags (HTML or otherwise) from text.

learn more… | top users | synonyms

2
votes
2answers
45 views

how to convert a string to the desired form?

Good day! I'm trying to implement a module for testing knowledge. The user is given the task, he wrote the decision that is being sent and executed on the server. The question in the following. There ...
1
vote
1answer
52 views

TinyMCE stripping HTML

Originally I thought the problem was with the iframe, but now I've realized the problem is with TinyMCE stripping HTML from the Text. I'm trying to make TinyMCE stop from stripping the iframe tags ...
-1
votes
1answer
32 views

Easier to put $_POST With Array

I did try many times to make values easier to put. It's my meaning to put values with array, because i don't need to type more values then, he can put it automatically.. For example, i write: ...
-1
votes
1answer
42 views

What is better for user experience strip_tags or htmlentities in php?

I have a web form that asks users for article name and the author of article. At the php backend in order to prevent malicious scripts I have two options - Use strip tags to prevent any tags user ...
1
vote
1answer
109 views

C# Strip HTML Markup in XML

i really hope someone can help me with this issue. The solution should be on C#. I have a xml file with the size of 36 MB and with 900k lines. On some nodes it has a lot of html markup and some ...
0
votes
2answers
41 views

strip_tags is keeping <a> but stripping its attributes

As the title says, when I use strip_tags($text, "<a>...<others>") and I insert hyperlinks into $text, I am left with an output of <a> rather than <a href='...'>. How can I get ...
0
votes
2answers
36 views

strip_tags truncating JSON

I have a JSON Response like this: { "id":"2461", "name":"GEORGIA INSTITUTE OF <leo_highlight style=border-bottom: 2px solid rgb(255, 255, 150); background-c", "logo":"", "address":null, ...
0
votes
1answer
249 views

ckeditor strips inline attributes

I have been using CKEditor for some time and it has worked great. I've pretty much gotten rid of any problems that ive had but this one i cant seem to figure out. When i add inline attributes to ...
0
votes
2answers
48 views

Using strip_tags for form validation with allowable_tags

It appears I can use PHP's strip_tags function within Codeigniter's form validation like this: $this->form_validation->set_rules('description', 'Description', ...
1
vote
1answer
58 views

Using .strip_tags($this->item->introtext). with a macro

I'm using RokCandy macro extension. This extension creates complex HTML codes from simple texts, so it's easier to give regular formats to some objects. The problem is that in the head of every ...
0
votes
1answer
88 views

Joomla component “attachments” allow html in input

this question might be a bit special. I am using this Joomla 2.5 extensions to give authors the abilty to add Attachments to articles: Joomla Attachments The extension renders an input field called ...
0
votes
1answer
29 views

Cropping hyperlinks from block of text with PHP

I have the following HTML on my webpage: <p>This is a <a href="http://www.google.com/">hyperlink</a> and this is another <a href="http://www.bing.com/">hyperlink</a>. ...
1
vote
1answer
60 views

How to make Markdown ignore <script> statements, if not under Code Samples?

I use the same JavaScript Markdown as here on Stack Overflow. My problem is this: I have a textfield: <textarea id="markdown" class="markdown"></textarea> And on keyup I do this event ...
1
vote
2answers
30 views

Can't seem to get rid of unwanted tags returned from API

I need to get rid of all the HTML tags in a description that gets returned from the Petfinder API, but I can't seem to figure out how. $data['description'] holds the returned description. What I can ...
1
vote
2answers
62 views

PHP “strip_tags” accept all except script

I am creating a Page-Preview before publishing or saving that page. What I have currently encountered that I have forgotten to add <h1> <h2> <h3> etc tags to the allowable list, but ...
0
votes
1answer
102 views

rendering description saved using tinymce editor

I have a problem with pagination. In my website , I have a function productList which generates a paginated list of products. The code for the paginate function is shown below: $this->paginate = ...
1
vote
3answers
92 views

Replace HTML strings with spaces [duplicate]

Does anybody know how can I replace HTML string with spaces? Because if I have something like this <div>word1</div><div>word2</div> when I use strip_tags(), the result is ...
1
vote
1answer
218 views

Strip all HTML code from String with C#

I am currently pulling some data from a SQL Server database into a C# asp.net page. I am using the following (portion of) code to ouput the HTML text that is stored in my body column: TextLabel.Text ...
0
votes
4answers
124 views

PHP - remove divs and content inside

HTML: <!--a lot of HTML before--> <div class="quoteheader"> <div class="topslice_quote"><a href="htsomelink">Some text</a></div> </div> <blockquote ...
0
votes
2answers
86 views

strip_tags|truncate:150 only return a few chars

I have job search page which display all jobs with its first 150 chars from jobdescription: {$listing.JobDescription|strip_tags|truncate:150} in smarty php template file will return: ...
0
votes
2answers
51 views

How can I turn the values inside a UL into an associative array in PHP

I have a ul list like this: <ul> <li> <div class="time">18:45</div> <div class="info">description goes here</div> ...
0
votes
1answer
202 views

How to remove an entire iframe tag (google maps) from a WYSIWYG content?

I want to remove from server-side (php) the iframe tag of an embedded Google Map. It's a symfony 1.4 project and I want to remove this from the action before serving the html to the response. The ...
1
vote
2answers
84 views

Using php to get all translatable text from a website/html-page

I'm trying to set up a translation tool to translate websites. What I want to do is import html-code and get all translatable texts from that site. One idea would be to use strip_tags, but it would ...
2
votes
2answers
300 views

Remove all html tags from a string keeping only one of them. Advanced strip_tags with one identifier attribute

I need to remove HTML tags in one string and keep only one type of them. I have one string that contains this: <!-- comment --> <div id="55"> text </div> <span ...
3
votes
7answers
147 views

php strip tags except '<>' (book name)

How do I remove all the HTML tags in PHP, except the <> characters? //There's other HTML tags, like h1, div, etc. echo strip_tags('<gone with the wind> <p>a hotest book</p>'); ...
0
votes
1answer
117 views

Show only some inline styles with strip_tags()

I have some really messy HTML with lots of spans and other tags. I'm trying to only keep <span style="font-weight: bold"> while removing the other such span tags. I have this so far: ...
-2
votes
2answers
45 views

How can u allow <3 or any tag < any character not ending with < or > sanitize

sanitize("hello") => hello but if i have sanitize("<3") it return 3 only i want it should allow string if not end with < or > like if i do sanitize("<3 >4") it should simply return <3 ...
0
votes
3answers
158 views

Strip html tags from text before adding it to textarea

When user fills a form on my site, it's sent to server with jQuery ajax, and server returns the results similar to this: <p>Sivustosi päivittyy usein tai silloin tällöin, joten ...
0
votes
2answers
33 views

php function advice needed

any advice would be helpful, thank you i'm trying to clean a piece of html tags with contents but for some reason it's not working properly <?php function cleaning($vclean) { $vclean = ...
0
votes
1answer
81 views

strip_tags not working properly of ahref

I am using strip_tags() function to extract the contents of a link (the text part not the link part). The string is obtained from twitter. Unfortunately it returns the same thing. The code is as ...
1
vote
1answer
456 views

TinyMCE strips inline style with valid-elements: *[*] with Codeigniter

I have read Tinymce strips attributes on submit, TinyMce Allow all Html tag, TinyMCE valid elements: only allow specific CSS rules, how to prevent tinymce from stripping the 'style' attribute ...
0
votes
2answers
290 views

“undefined method `bytesize' for nil:NilClass” appearing after form input with sanitization

I'm using a form_tag in my Rails 3 app for a form not bound to any model. I understand (although please correct me if I'm wrong) that this helper doesn't have the same sanitisation benefits as the ...
0
votes
1answer
161 views

strip_tags php function is leaving the tags

my code below is giving an output when I check the page source of not removing the HTML tags for the username even though I specify to strip them. If I remove the <p> tags at the bottom and just ...
0
votes
2answers
208 views

Remove HTML tags except <a> and convert reserved to entities, keeping <a> in tact

Using PHP, how can I remove all tags except anchors (<a>) from an HTML string, and then convert all the reserved characters into their HTML entities except for the <a> tags? For ...
1
vote
2answers
130 views

Custom script to clean input including the following functions strip_tags() strip_html_tags() trim() passes tests even though they truly fail

I am creating a validation script which is way more advanced than this little section, I am just printing the specific part I am having issues with. The script simply takes in a single dimensional ...
1
vote
5answers
124 views

How to strip user defined tags from a string in php?

For example: $str="<name>ABCDE<age>45"; I know the use of strip_tags function,it reomves all the tags in the sring. But I want to strip only a particular tag to get the output as ...
0
votes
1answer
71 views

Stripping MediaWiki markup from text

If there a way to strip away ALL MediaWiki markup "code" from a text using C#? For example, I have the following text: <h2><span class="editsection">[<a ...
4
votes
2answers
706 views

strip_tags disallow some tags

Based on the strip_tags documentation, the second parameter takes the allowable tags. However in my case, I want to do the reverse. Say I'll accept the tags the script_tags normally (default) accept, ...
2
votes
1answer
98 views

Stripping specific HTML tags in PHP

I searched a lot about striping HTML tags from some particular database content(field). I got this code somewhere. It works fine. However it is for stripping all HTML tags except those tags that are ...
0
votes
0answers
93 views

How to use the combination of strip_tags and htmlentities on the results of a PHP form?

I've built a CMS that allows users to upload data through a webform. And i'm trying to find a way i can use both html_entities() and strip_tags on the results of the form before i insert them to my ...
1
vote
1answer
261 views

Using Java how do I strip the html from a pop3 email when reading it using javamail?

I need to let users submit an email to an address which will be used to populate entities in my database. My program will periodically check the inbox for new mail and when it finds a new mail item, I ...
1
vote
2answers
72 views

How can assign preg_match_all variable to a vaiable

Forgive me as I am a newbie programmer. How can I assign the resulting $matches (preg_match) value, with the first character stripped, to another variable ($funded) in php? You can see what I have ...
0
votes
2answers
97 views

PHP: Assign include data to a variable?

This is logically what I want to achieve: $variable = include "file.html"; strip_tags($variable); Is it possible If not, how can I run the strip_tags function on the contents of a file that I ...
0
votes
1answer
92 views

Strip attributes in HTML tag span

I'm fetching data through CURL request and while parsing the HTML I'm some spans having attributes are not being parsed neatly. Snippet of HTML code <div class="ftlt" style="width:250px;"> ...
0
votes
3answers
94 views

PHP strip_tags only at the end of the string

Ok, well, I just want to use strip_tags function on the very end of a string to get rid of any <br /> tags. Here's what I have now, but this is no good because it strips these tags from ...
-2
votes
1answer
290 views

remove hidden (display:none) html tags in php

I need a PHP regex that will remove hidden (with display:none in their style) from a html code sequence. I tried exploding it and working it out but it turns out to be a mess. For example the html ...
0
votes
2answers
632 views

php strip_tags not removing div (and others)

I'm trying to validate a comment form using AJAX/PHP, very nearly done now except the strip_tags function in php doesn't seem to remove all elements. Here's what I have: $msg = $_POST['message']; ...
0
votes
3answers
152 views

PHP truncating string when using strip_tags

I have this stored in my MySQL InnoDB UTF8 database: <p>At 5'1" (155cm) in length, this "Baby" grand piano was introduced in the 1930's and features the powerful and rich tone of a much ...
1
vote
2answers
1k views

PHP: strip_tags - remove only certain tags (and their contents)?

I use the strip_tags() function but I need to remove some tags (and all of their contents). for example : <div> <p class="test"> Test A </p> <span> Test B ...
0
votes
1answer
138 views

javascript strip tags working on my script

I am using ZeroClipboard to copy code from a generator which can then be pasted by the user. I can easily copy the code from the generator to the clipboard, however when I add the .replace command ...

1 2 3