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: bitplayer
  • Content: Threads
  • Order by date
  1. bitplayer

    How to change link color with inline style

    From the FAQ: <HEAD> <style type="text/css"> <!-- a:link {color:#000000 ; text-decoration: none; } a:active {color: #000033; text-decoration: none; } a:visited {color: #000066; text-decoration: none; } a:hover {color: #003300; text-decoration: underline; } --> </style> </HEAD> That's how you...
  2. bitplayer

    Swapping content of 2 vars

    Not sure whether to put this in the C++ forum or here. But I seem to remember one time being very impressed when I read somewhere of a slick way to swap 2 variables without the use of a temporary var. I wanted to use this in a bubble sort I am writing for a class in Java. Here is the dumb...
  3. bitplayer

    How does one get length of array of array?

    I am reading a series of lines from a file, each of which has a set of strings separated by commas, and storing each of those strings into arrays. So I have an array of arrays. The first string on line 1 would be $WL[1][1], the second string on line 1 would be $WL[1][2]. The first string of...
  4. bitplayer

    removing beginning SPACEs from string use RegExp

    QstrVal.replace(/^\s+(.+)/, "$1"); // replace one or more SPACEs at start of string with nothing QstrVal.replace(/(.+)\s+$/, "$1"); // replace one or more SPACEs at end of string with nothing I wanted to come up with a small piece of code for removing preceding and trailing spaces. From what I...

Part and Inventory Search

Back
Top