Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: SparceMatrix
  • Content: Threads
  • Order by date
  1. SparceMatrix

    HTML::Parser parsing details, example: <OL>. Simple code included

    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...
  2. SparceMatrix

    Regular Expressions as variables. Simple code included

    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...
  3. SparceMatrix

    Can I process another file as HTML from JavaScript?

    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...
  4. SparceMatrix

    Can Javascript access the same GET and POST values that PHP can?

    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...
  5. SparceMatrix

    Is there a function to convert from binary to hexadecimal?

    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 ->...
  6. SparceMatrix

    oct(0b & really huge binary) ... "integer overflow in binary number&quo

    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...
  7. SparceMatrix

    Applying foreach to multidimensional arrays. Simple program included.

    The following program is taken from this post: http://www.tek-tips.com/viewthread.cfm?qid=833207 @foo = ( ['e11', 'e12' ], ['e21', 'e22' ], ); print "\$#foo = $#foo\n"; for($i=0; $i<=$#foo; $i++) { for($j=0; $j<2; $j++) { print "\$i = $i, \$j = $j...
  8. SparceMatrix

    Multidimensional Arrays - This simple program doesn't work - Tie::File

    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...
  9. SparceMatrix

    CSS: Partial Attribute Value Selector, need a good example

    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...
  10. SparceMatrix

    Concatenating sequences of RegExp search and replaces ... Possible?

    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 =...
  11. SparceMatrix

    Using &quot;$/ = undef&quot; and &lt;STDIN&gt; together

    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...
  12. SparceMatrix

    HTML to Text with PERL. Is it possible?

    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...
  13. SparceMatrix

    Windows: File test operators fail outside of current directory

    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)...
  14. SparceMatrix

    MS Windows directories with spaces create &quot;glob&quot; errors

    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...
  15. SparceMatrix

    From VBScript to Win32::OLE ... &quot;foreach&quot;

    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...

Part and Inventory Search

Back
Top