I originally started applying this module to solve a problem I posed here,
http://www.tek-tips.com/viewthread.cfm?qid=1220558, "HTML to Text with PERL. Is it possible?"
I got some good code and some good advice, but I am having a new problem right away.
Here is the basic code again,
use...
I am trying to apply arrays in creating sequences of global Search and Replace Regular Expressions. I have the PERL Bookshelf CD 4.0 and have looked at the discussion in Chapter 7 on using the "qr// operator. But I have yet to apply a successful strategy using the substitution method I...
I've come up against this problem several times now. I tried dealing with it with PHP, but it appears my commercial host has disabled classes so that I can't use the DOM class ("disabled_classes -- no value" in my phpinfo()). I need to load an HTML file to search the text and highlight found...
I need to retrieve the GET (and/or POST) values that are submitted from a form on one page in a Javascript running on the loaded targeted page. Can Javascript access those values? I've a lot experience doing this with PHP, but of course Javascript is client scripting. Do I have to parse out...
I've looked up all the permutations using "oct" and don't see a solution there. "hex" won't do it. If "sprintf" will do it, I can't tell from the documentation and "unpack" is even more obtuse. A staged conversion such as binary -> decimal -> hexadecimal won't do, it must be binary ->...
I am doing some scripts that work with huge matrices having only ones and zeros in them. As a way of tracking unique rows, I take a row and run it through "oct" and then fool with the array of numbers I get. It worked like a charm for some small matrices, but now that I'm getting row numbers...
Multidimensional Arrays - This simple program doesn't work - Tie::File.
I am trying to create a multidimensional array and I can't seem to access the members of the array. I am using Tie::File to write the contents of a file into an array so that each line is a member of the array. But...
In my O'Relly CSS Pocket Reference I found a selector called a Partial Attribute Value Selector which looks like this:
element[attr~="value"]
I interpret this to mean that if a create a style,
td[class~="MyStyle"] { font-weight: bold; }
then
<td class = "MyStyleA">Text Example</td>
will show...
I would like to be able to take this series of simple search-and-replaces and replace it with a single or fewer regular expressions. Is it possible? Or, is there a more economical way to handle a series of search and replaces?
#!/usr/bin/perl
$SampleString =...
Using "$/ = undef" and <STDIN> together
In a PERL script I need to open a text file to be read all at once and not line by line. I have been advised that the way to do this is to set $/ = undef, and this has worked nicely so far. But now I have to provide some input by way of <STDIN> and when...
I need to convert a collection of HTML files to Text files. More precisely, I need to convert .html to .txt files, but I need them parsed first so that what you see in the browser from the .html file you now see in the .txt file.
I'm already doing this with a script using MS Word's scripting...
I want to be able to negotiate directories, this is fundamental to the text processing script that I am trying to write. I am finding that when I run a script from anywhere but the directory that I am trying to list, I cannot test the results of "readdir" for the presence of a directory (-d)...
MS Windows directories with spaces create "glob" errors
I am have my introduction to PERL programming in Windows with ActiveState.
So far, I have been able to make use of folder handling with the Win32::OLE WScript object functionality. I needed help with this which I got here...
I am using PERL, v5.8.7 built for MSWin32-x86-multi-thread from ActiveState.
This is my first attempt at PERL. I have written three or four small but hard working VBScripts using various objects guided
by O'Reilly's excellent "Windows 98 in a Nutshell". I would like to make use of PERL's...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.