Tagged Questions
1
vote
0answers
83 views
Walking Dom in PHP to replace a list of string found into “HTML text”
I would like to replace a word list (in array) in a list of links (hrefs in array) into an html page.
I think mostly have 2 options:
Doing this from regular expressions (strongly discouraged to ...
0
votes
1answer
41 views
PHP regex find and replace url attributes in DOM
Currently I have the following code:
//loop here
foreach ($doc['a'] as $link) {
$href = pq($link)->attr('href');
if (preg_match($url,$href))
{
...
1
vote
2answers
79 views
regular expression to add a target=“blank” to all external links
Is it possible to add a target="_blank" to all <a> tags, with just one regular expression? I've been experimenting with negative and positive look aheads/behinds, to no avail. This should:
...
0
votes
2answers
41 views
Find and alter links with js in a text
I have a text that must be send as an email. But to give the mail its layout we need to add some style.
What we must do is the following:
1 find in a text one or more links with this format
<a ...
0
votes
1answer
29 views
jquery: appendTo lose stripslashes in a hidden field
Am working on a front-end utility for creating forms using PHP and jQuery; i can add several specific fields that later will be used on a form and which parameters are stored in dinamically inserted ...
1
vote
2answers
78 views
Form validation regex and DOM: What would be the best way to implement regex in a form validation
Form validation regex and DOM:
What would be the best way to implement regex in a form validation?
Im currently doing this, but when I validate it's not matching the values:
if(this.value.length ...
0
votes
2answers
48 views
how to resolve the bug in the decimal validation code?
it will for 21.22 or 1.11 or something..
but the error is it will allow dot in front of digit and it allow multiple dot for example 123.2.2
<HTML>
<HEAD>
<script ...
0
votes
2answers
73 views
How to write code for allow only two digit after period using javascript?
i have to enter only two digit after dot.
for example
23.34
1.22
.23
Here is sample code
<input type="text" id="amount" onkeypress="return isNumberKey(this);">
function isNumberKey(evt)
{
...
0
votes
2answers
74 views
Replace css value with a string
i need to change the height and top of my div to "$$height$$" and "$$top$$" before posting it for save in php. but jquery fails todo so (i think for mistake prevention):
$("#myobject").css("width", ...
2
votes
2answers
171 views
Full text based Search on Client Machine using Java Script
I am trying to implement a full text-based search functionality on a client machine.
I've found that Lunr.js satisfies my requirement partially, but it has to be loaded on a Server like Apache, then ...
1
vote
1answer
69 views
element selection with prototype js
I'm having a some problems with a page where I have an input to take product EAN code and compare that to a table listing of products and update the input box with id ean_xxxx to oldValue+1. My ...
0
votes
1answer
48 views
Return child or parent after a regex find javascript
Hopefully this is a quick question that can be answered. Is it possible after running a regexp and it turn true to return the parent(s) of the dom element where it was found?
Any sample code would ...
0
votes
2answers
102 views
How to filter DOM element with only parent and partial content as identifier in PHP [closed]
I am able to select the parent div class and all list items, but trying to capture the specific one with UPC number and remove the tags along with content. Notice no id or class in all children under ...
0
votes
3answers
96 views
regular expression match all strings that start with T [closed]
I need a little help in writing a regular expression.
I need to find all sub-strings of strings that start with T. and end with . (in this case, those sub-strings are numbers). Those strings have to ...
1
vote
2answers
55 views
Find and separate the HTML blocks to an array
First of all I want to describe the idea - anyone know that any CMS or a simple website has some kind of blocks like the list of articles for example on the main page of wordpress where shown each in ...
0
votes
2answers
61 views
How to parse HTML “BLOCKS” to a table layout for every not empty tag?
Updated: (things are more complicated including blocks, which I didn't explain from the start, but I understand that this should work with regex or something)
How to parse HTML blocks to a table ...
3
votes
2answers
65 views
Match string between “img” tag and “alt” tag and line numbers
I am trying to get string between end of “img” tag and closing “a” tag (hello i am from after img tag) from the line below.
<a href="products.html><img src="image.jpg" alt="alt ...
0
votes
1answer
35 views
PHP regex for DOM Manupulation
I am trying to get text from a URL.
Can anyone help me.
$news1 = "http://www.espncricinfo.com/icc-womens-world-cup-2013/content/story/604808.html";
$a=preg_match_all("/\<p ...
-2
votes
4answers
39 views
JS - text value of tag - when tag is string
How can I get text value of a tag when tag is stored as string?
var value = "<div>teeext</div>";
tag can be anything, its attributes may contain ">" string as well, regexp can be ...
0
votes
1answer
51 views
How To Parse This Content Into Friendly URLS
Im using simple php dom parser to get a tables td contents which I am outputting as plaintext and comes out like this:
<p> Graphic Artist / Designer<br />
...
1
vote
1answer
69 views
Elegant way to extract specific text from between HTML nodes?
From the following string I need the dynamically changing "6.903" number to make calculation with.
Is there some regular expression or some jQuery trick to do that easily or elegantly?
<a ...
1
vote
1answer
85 views
how to get element IDs using regular expression in dojo
I have many input fields like:
<input id="number1" type="text" />
<input id="number2" type="text" />
<input id="number3" type="text" />
<input id="number4" type="text" />
I ...
1
vote
3answers
146 views
How to parse @import URLs using php dom or regex?
Given html such as:
<!-- main layout and navbar stylesheets -->
<style type="text/css" media="all and (min-width:481px)">
@import url("/styles/main.css?v=11") screen, projection;
...
-1
votes
1answer
89 views
How to get contents of page stylesheets using php dom?
I am new to php, can anyone suggest how to get contents of stylesheets of a page in order they appear on the page using php dom ?
Let's say in head of page is:
<link rel="stylesheet" ...
1
vote
1answer
99 views
HTML manipulation: Match the first X number of HTML tags and move them
Let's say I've have the code like this:
<img src="001">
<img src="002">
<p>Some content here.</p>
<img src="003">
What I want to do now is to match the first two ...
0
votes
1answer
126 views
PHP scrape HTML image sources which are NOT within anchor tags
I wish to return an array of image sources from HTML which are not nested within .. tags... that is, all images which are not links.
The topic was already discussed briefly here: Match image tag not ...
1
vote
1answer
190 views
Regular expression to validate characters and numbers
I want to validate a text input field which has an input with four default characters, followed by minimum of 5 digits.
There is no restriction for maximum limit of numbers.
Eg: abcd123456
Can ...
0
votes
1answer
71 views
regex - scraping javascript
I am trying to scrape some data out of an HTML page that I'm getting with cURL. I've been using a PHP DOM lib called ganon; but in this case, the number I need is in Javascript.
{
label: ...
0
votes
2answers
79 views
Manipulate Javascript in an HTML file with PHP [duplicate]
Possible Duplicate:
PHP Regex extract a javascript variable
This is really probably just a simple string manipulation question that needs a good regex solution.
I have some javascript ...
-1
votes
2answers
272 views
Using Simple HTML DOM to get specific plain text
Problem:
Trying to extract specific text from HTML code that is available to me through PHP.
HTML code:
<a href="/debatt/s-vill-ha-tioarig-skolplikt-och-farre-elever-i-klassen">
<span ...
1
vote
2answers
102 views
Why does this regex/DOM character entity tester return `undefined`?
var str = 'let us pretend that this is a blog about gardening&cooking; here&apos;s an apostrophe & ampersand just for fun.';
This is the string I'm operating on. The desired end ...
1
vote
2answers
187 views
Best way to modify html form elements with php?
How do I modify and insert form elements using PHP?
I have a form assigned to a variable in PHP like so:
$the_original_form = '
<form method="post" action="whatever.php">
<input type="text" ...
-4
votes
1answer
66 views
Can't seem to get rid of new white space lines in mysql
EDIT:
For those having issues with mysql data that won't get rid of white spaces between rows. It's because of deep tabbed indents due to an issue when copy pasting from editors/word documents.
...
0
votes
2answers
200 views
How to get svg elements by class using regular expresions
I am trying to make an interactive graph out of an svg with paths for edges and circles for nodes. To find children of a node I want to be able to search edges for ids with a certain regex since the ...
2
votes
1answer
105 views
What can be alternate way to load strip out javascript and put it in array for later use
I am using following code to strip out javascript from html dom string and put them in array for later use.
What can be alternate good use.
My Problem:
I am getting problem with unicode inside the ...
-5
votes
2answers
127 views
How to retrieve data between two <br/> tags [closed]
I want to get the data between the two <br/> tags.
The data in xml file is like this <br/>lots of data<br/>.
Now I want to get the data between the two <br/> tags and fetch ...
0
votes
5answers
156 views
(jQuery, RegEx) Remove from the beginning to some word
Need a simple RegEx for text replacement: from the beginning to the only known word.
Before:
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore ...
0
votes
1answer
77 views
Passing javascript string variable as firebug command
Using firebug i have extracted all the links of a webpage using
var links = document.getElementsByTagName("a");
for(var i=0; i<links.length; i++) {
console.log(links[i].href);
}
now all the ...
2
votes
1answer
273 views
Parsing XHTML string with Regex in Javascript and converting it to DOM
Disclaimer: before the you-can't-parse-html-with-regex blind mantra begins - please give me the benefit of the doubt and read this question to the end (+ assume I already know about That RegEx-ing the ...
0
votes
2answers
139 views
Replacing an anchor with link & truncated value
I have a javascript function that I use to detect and replace links with an anchor (html). However, the problem is that some people paste in massive links that cause page elements to overlow, which ...
3
votes
3answers
126 views
PHP: Filling Form Input non-intrusively Using DOM or REGEX
I'm working on a user authentication system. Because I want it to be as customizable and flexible as possible, I do not want to mix PHP with HTML. I have developed a simple template engine which works ...
-2
votes
3answers
118 views
How to extract a text from java script using PHP dom or regex
I want extrat node value from following java script part.The java script is contained in html head section.I want to do it with PHP html dom or regex.
<script>
...
2
votes
3answers
246 views
Wrap segments of HTML with divs (and generate table of contents from HTML-tags) with PHP
My original HTML looks something like this:
<h1>Page Title</h1>
<h2>Title of segment one</h2>
<img src="img.jpg" alt="An image of segment one" />
<p>Paragraph one ...
2
votes
3answers
267 views
Need suggestion of a good way to find content of a div
<div class="box notranslate" id="venueHours">
<h5 class="translate">Hours</h5>
<div class="status closed">Currently closed</div>
<div class="hours">
<div ...
0
votes
4answers
245 views
regex to replace filepath to just filename in a string using php
I've got a css string like this :
$string = "div#test {background: url(images/test.gif); width:100px; } div#test2 {background: url(../images/test2.gif); } ";
Basically I want to able to replace ...
1
vote
1answer
153 views
Find position of HTML tags in text with javascript, preferrably not using regex?
I have text that contains HTML tags. I would like to find out the starting and ending position of each tag pair. That is text position of opening tag and text position of tag.
Because I know that ...
4
votes
1answer
274 views
php remove invalid chars
I have the following errors outputed when I work with $dom->loadHTML('<?xml version="1.0" encoding="UTF-8"?>' . $html);.
Warning: DOMDocument::loadHTML() [domdocument.loadhtml]: Char 0xD860 ...
0
votes
3answers
3k views
Extract data from HTML table row column
How to extract data from HTML table in PHP. The data is in this format
Table 1
<tr><td class="body" valign="top"><a ...
1
vote
3answers
181 views
How can i use Regex or DOM with PHP to get a slice of HTML?
If I have a block of HTML and want to get the exact HTML content for certain nodes and child nodes, for example the <ul> block below, should I use something like preg_match or parse the content ...
0
votes
1answer
226 views
Remove links where href is disallowed
I have some links like this:
<a href="http://illegallink.com"><img src="something.jpg" /><a href="http://legallink.com">legal</a></a>
I want to remove all links that ...
