What I need to do is to export a CSV file (see "FILE2 Example") and change the price of that part e.g. "2.64" to "3.28.
I have a list of 4000 parts that need to be compared with a file that might have 20K+ lines (New prices for parts).
What I was trying to do is create a "Hash" of FILE1...
How do I get a value between two points on a line?
"BRG CALIF. 2 STAR 0000 00000000"
Point "A" is "BRG" point "B" is "0000"
I want to see everything between the "G and 0"
Less "G" and "0".
So what should be returned " CALIF. 2 STAR "
I can strip the spaces out myself...
I have a value and I want to know if it is a numeric value.
There isn't anything to test a value if it is truly numeric. Nothing is jumping out at me. I have been looking online for a while.
Douglas
This is what I have below.
BRG 100023 GASOHOL TEST KIT
This is what I want:
GASOHOL TEST KIT
I can extract the BRG and 100023 but I need the "Title" of the product now.
@array("BRG 100023 GASOHOL TEST KIT");
print $array[1] . " " . $array[2]. " ". $array[3];
That would only get me
BRG 100023...
I have a file that has multiple lines exactly 4 lines per product.
I would like to combine every two lines into one line.
E BRG 100023 0000 00000545
Z BRG 100023 GASOHOL TEST KIT
The two lines below - The actual file has about 24,000 lines.
I have been...
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.