1
vote
1answer
24 views

Delete text outside of tags

Using vim, I am attempting to remove all text outside of <text> blocks. This needs to span across newlines and other (unrelated) tags. I have attempted to use regex to substitute text for ...
0
votes
1answer
10 views

SublimeText 2 / REGEX - Remove everything in between two tags including line breaks?

I have a CSV document littered with thousands of instances of a table that I need to remove. I assume I can use REGEX, but I can't seem to find an expression to remove it. I attached a sample at the ...
0
votes
1answer
31 views

php replacing text in a template engine

we have a situation where we have a template file like the following <?php $tpl = ' <p>This is the header</p> {if "IS VALID"} <p>The value is valid {if "IS ...
0
votes
2answers
60 views

Replacing HTML String & Avoiding Tags (regex)

I'm trying to use JS to replace a specific string within a string that contains html tags+attributes and styles while avoiding the inner side of the tags to be read or matched (and keep the original ...
-5
votes
2answers
47 views

How to replace all tags “<br>” (and its variants) by System.getProperty (“line.separator”)? [closed]

How to replace all tags <br> <br /> </br> <BR> </BR> by System.getProperty ("line.separator") in Java ? Unfortunately this question can not help me
3
votes
2answers
50 views

regex java: how to replace a string in a generic between the start tag and end tag of a generic

In java, I have a string like so: "bla bla bla bla [BACK] bla bla bla [bla bla [GO] bla bla bla bla [bla" and I want to find a rule with the regex to replace start tag "[" with "(start)" and the ...
2
votes
1answer
34 views

RegEx like conditional statements (with tags)

I have 12 images and I wanted to check if they were all invisible. So I would have to check if they were either hidden or if they just had no content in them. Rather than check if each one was hidden ...
0
votes
0answers
56 views

Matching content between tags from RSS and inserting each match into an array - perl [SOLVED]

I'm not sure how else to word what I want, so I'll just use examples for what I have and what I want. I have: my $rss = ("<item><title>this is a test title</title></item> ...
1
vote
1answer
70 views

Parsing comments and strings in source code

I'm designing and implementing a scripting language, and for the "reading" stage I'm taking the time-tested and straightforward approach of splitting the code up into tokens (lexical analysis) ...
-2
votes
3answers
67 views

Regex: Everything but TAGs

I try do get all strings/text except html tags. ex. <html><head><title>test</title></head><body><p>hi there</p></body></html> --> ...
-1
votes
3answers
95 views

RegEx - Match several tag pairs in parent tag

I am trying to use regular expressions in Java to match all string of the form <b><number></b> that are contained within a <a><\a> pair. e.g. <a> kljsdlk ...
0
votes
3answers
70 views

Regex replace text between tags

How to match text between these tags ? <!-- |IFNOT:ARCHIVE_PAGE| --> some text <!-- |END:IF| --> Thanx!
0
votes
2answers
185 views

Extract text between tags c#

I have to make a function that reads all substrings between all tags of format: <tag>sometext</tag>. 'tag' can be any alphanumeric character, and user can enter as many different tags as ...
122
votes
6answers
6k views

Convert PHP closing tag into comment

One of the lines in my script contains a PHP closing tag inside a string. Under normal operation this does not cause a problem, but I need to comment out the line. I have tried to comment out this ...
-1
votes
1answer
40 views

how do i scan custom attributes from html tags?

how do i scan custom attributes from html tags? here is example code. undecided custom attribute name. <table> <tr> <td mycustom-attr1="true"></td> <td ...
-2
votes
2answers
38 views

Search all the content of an href in a chain php [duplicate]

Possible Duplicate: Grabbing the href attribute of an A element how can i find the values of all the href in a characters chain. Example : <a href = "blabla1"> Test1 </a> ...
1
vote
2answers
82 views

Regular Expression Match for Tags

I need to use C# to write a Regular Expression for tags, here is the requirement: Tags are optional; Maximum 9 tags; no duplicated tags; Maximum 30 characters for each tag; Each tag should only ...
0
votes
1answer
195 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
1answer
72 views

Write regex to replace html paragraph according to the attribute of a specific tag

I have a string containing regular text mixed with html how do i write a regex so I can replace specific p(paragraph) tags with regular text here's an example of what I want to replace: <p ...
0
votes
2answers
77 views

Wrapping parts of text with XML tags using regular expressions

We are developing our internal tool to produce documentation for our .NET products. As a part of its functionality, we need to wrap normal paragraphs with the <para> tags. In this context, ...
0
votes
1answer
83 views

Regex to find all <body> tags not written by server-side code

I've been trying to create this Regex but it's driving me crazy. What I basically need is a regex that detects all <body> tags which are not written through my server-side code. My plan is to ...
-3
votes
3answers
64 views

Finding all spaces in html tags with one regular expression

I have a user generated HTML valid text in which I need to find and replace all spaces that are inside html tags. Please don't ask me why, I am just looking for the regular expression that finds all ...
1
vote
1answer
67 views

Match text/html outside of PHP tags

I'm searching for a solution, for this. It's easy to select all the content inside of PHP tags (basically ) but I cant seem to get the opposite to work. First, I tought this would work: ...
-3
votes
1answer
68 views

Perl complicated regex search with tags to remove and comments (multiple depth)

I am trying to comment out part of a file as it follows: (Mutilevels in the search make it hard to do) -> The nesting can go beyond 2 levels and their is more than one STATEMENT_TO_KEEP name if ...
0
votes
3answers
275 views

regex replace text between tags <script language='javascript'> and </script>

I cant find a working demo on StackOverflow or Google of this. I have a string, which contains an area I need to remove. </tr> </table> </div> <script ...
0
votes
2answers
103 views

Skipping over tags and spaces in regex html

I'm using this regex to find a String that starts with !?, ends with ?!, and has another variable inbetween (in this example "a891d050"). This is what I use: var pattern = new ...
0
votes
2answers
138 views

regex to change text inside a html tag

First of all I'm new to stackoverflow so I'm sorry if I posted this in the wrong section. I need a regex to search within the html tag and replace the - with a _ e.g: ...
1
vote
2answers
428 views

Regex - Find elements with name attribute but not id

This problem came to me today. I'm working in a web-based (Struts 2) project with lots of JSPs, and most of input, select, table and a elements are defined with only with the name attribute, no id ...
3
votes
2answers
294 views

How to parse HTML tags in Matlab using regexp?

I'm short on time and specifically wanted to extract a string like the one below. Problem is the tag isn't of the form <a> data </a>. Given, s = <em style="font-size:medium"> ...
-6
votes
1answer
49 views

Regex to get words [closed]

Hello guys, I need to parse my textarea to get all words (followed by spaces) that has a $ as a prefix. For example, I have the follwing text: my name is $Ahmad and I wish $peace to all the $world ...
0
votes
2answers
228 views

Replace specific character only between <tag> and </tag> in PHP

I have something like <code> <1> <2> </code> and I would like to get this : <code> &lt;1&gt; &lt;2&gt; </code> but I want to apply this only ...
1
vote
1answer
105 views

How to match with RegExp outside of HTML Tags [duplicate]

How can I match some alphanumerical words that are outside of an HTML Tag instead of match every words Example: <div id="mariano mariano mariano" nota="mariano/mariano">mariano was looking ...
0
votes
1answer
77 views

Retrieve specific text freebase/WEX python re

let's say I have text/string like this This is something before any tag, today's date is 09-06-2012 blah blah <firsttag> content of first tag </firsttag> <sentence> This is the ...
0
votes
3answers
376 views

Python regular expression to remove space and capitalize letters where the space was?

I want to create a list of tags from a user supplied single input box, separated by comma's and I'm looking for some expression(s) that can help automate this. What I want is to supply the input ...
0
votes
4answers
78 views

regex pattern for tags needed

Howzit, I need help with the following please. I need to find tags in a string. These tags start with {{ and end with }}, there will be multiple tags in the string I receive. So far I have this, ...
-4
votes
1answer
48 views

regex html specific task [closed]

Suppose I have this text: "aazaa-zaa b aza-za aaa b aza-z -b aaaz-zaa -b aaz-zaa b a -b" We consider that each b has a corresponding -b and they are nested correctly(just like HTML tags). I want to ...
-1
votes
4answers
355 views

C# regex. Nested tags. Matching spoilers and converting them to bbcode

I have the following html code, which have nesting up to level 3: <div class="sp-wrap"> <div class="sp-body" title="FAQ"> Some text <div class="sp-wrap"> ...
1
vote
2answers
74 views

Replacing end tags using Regex

I have some expressions of type <h2> text </p>. How do I search for the </p> tags and replace them for </h2> using regex?
4
votes
2answers
537 views

Sed regexp multiline - replace HTML

I am attempting to replace multiple lines using sed on a Linux system Here is my file <!-- PAGE TAG --> DATA1 DATA2 DATA3 DATA4 DATA5 DATA6 <div id="DATA"></div> DATA8 DATA9 ...
0
votes
0answers
130 views

How can I get href in html tags? into VB with Regular Expressions

I already can get href url, but before I have to find which tags have that tags "type=application/rss+xml" and "rel=alternate" link rel="alternate" type="application/rss+xml" title="Internet News" ...
1
vote
1answer
172 views

recursive tag match using regular expression PHP

I'm using "special" tags, but I have a problem with recursivity. There's an example: <!-- BEGIN foo --> parent text <!-- BEGIN bar --> child text <!-- END --> aditional parent ...
2
votes
2answers
119 views

Regex matching bracket when it should not

With the input: "a[href*=\"test\"]" I am attempting to match the tag name from the following jQuery selector: Regex r = new Regex("^[A-z]+"); string tagName = ...
0
votes
1answer
296 views

regexp for catch specific content in nested html tags

In this example: <TR valign=top> <TD width=2>Region</TD> <TD width=3>number</TD> </TR> <TR valign=top> <TD width=2>camp</TD> ...
0
votes
1answer
193 views

Delete all attributes but keep specified in html tag with regex

I have html tag like this: <p class=MsoNormal align=center ...
0
votes
3answers
118 views

Regexp matching html tag

I have following regex: ^(?:(?!<(\w+)(\s+(\w+)\s*\=\s*(\'|")(.*?)\\4\s*)*\s*>).)*$ And I have textbox where user can type JavaScript code so regex should match things like: if ( i < html ...
2
votes
6answers
238 views

Tricky: how to Extract the text from <b></b> tags

my head exploded trying to find an elegant solution to my problem: I have the text (code for Python 2.6): txt="foo<br><br><b>bar :</b><br>foo<br><b>bar ...
1
vote
1answer
44 views

how to replace group in php using regex?

i have a string like this: [img]http://placehold.it/350x150[/img] [img]http://placehold.it/350x250[/img] i would like to grab the actual link and place it in a img <img ...
1
vote
2answers
136 views

How to highlight text within & out of tags?

I'm developing WebApp. I've feature to quicksearch for articles. In two words structure is: Page Global array (json, 100-150 items) with articles which is fetched by ajax. (with fields: id, title, ...
1
vote
3answers
1k views

PHP to remove all table tr td tags

I am looking for a way to remove all <table*> <tr*> <td*> </td> </tr> </table> tags from a string. Where the * is a wildcard for anything else. What are the regexs ...
0
votes
3answers
824 views

regex catching multiline script tag inside html

I need to grab inline script tags inside html pages. The regex will eventually be driven from c#. Now I am using Expresso for test purpose. The following is the best for now: ...

1 2 3 4