Hello,
I need help extracting certain parts of a String that I pulled Using ie.Doc.Body.InnerText, the problem is that the text i need is all in one line, I need a way to tell the Code to stop when it sees a certain character or string. I've tried messing around with instr() but no luck.
Here is the output from Innertext:
Show Filters
Job ID:
BÖWE One Job Information Sheet
*JLI-2156379*Thursday, May 05, 2011
11:00 PM
Job NumberDue Date
Order ID:LI-539625Order Name:Beneficial Interim
Customer ID:BR Customer Name:Broadridge
Create User:Create Date:Saturday, April 30, 2011 5:19 AM
Job Name:ROYCE FUNDS
Reference #:M89818-010
Product ID:BEN. INT Product Name:BENEFICIAL INTERIM
Job Type:INTERIMJV Template:11 - INKJET
Job Quantity:1704
Special Instructions:
Order Quanity 0000002134Mail Method USPS STANDARD MAILSub-Level 010
Env Code 6Save All Surplus YFold Material N
Fund Name ROYCE VALUE PLUS FUND-CONSULTANT CL
Comments A
Comments B
Comments C
Comments D
Drop Date
# of Enclosures01Schwab N
Enclosure TypeCode/DescriptionUnique ID
1SUMMARYRVP-CRK-0511552308
2
3
4
5
6
7
8
9
10
CUSIPMC0053Media TypeINKJETService TypeIC
Weight00000.700Meeting Date1900-01-01Special PrintN
Thickness00000.036Strat. Amount000020000Package Max001
Work CenterVPrint Date2011-04-30Print Name5 AM
*M89818-010*
For example:
from line
Order Quanity 0000002134Mail Method USPS STANDARD MAILSub-Level 010
I want only whatever is after Mail Mehod, In this case USPS Standard Mail, (also Mail Method is not a constant).
if the HTML Source code is needed i can post it.
I need help extracting certain parts of a String that I pulled Using ie.Doc.Body.InnerText, the problem is that the text i need is all in one line, I need a way to tell the Code to stop when it sees a certain character or string. I've tried messing around with instr() but no luck.
Here is the output from Innertext:
Show Filters
Job ID:
BÖWE One Job Information Sheet
*JLI-2156379*Thursday, May 05, 2011
11:00 PM
Job NumberDue Date
Order ID:LI-539625Order Name:Beneficial Interim
Customer ID:BR Customer Name:Broadridge
Create User:Create Date:Saturday, April 30, 2011 5:19 AM
Job Name:ROYCE FUNDS
Reference #:M89818-010
Product ID:BEN. INT Product Name:BENEFICIAL INTERIM
Job Type:INTERIMJV Template:11 - INKJET
Job Quantity:1704
Special Instructions:
Order Quanity 0000002134Mail Method USPS STANDARD MAILSub-Level 010
Env Code 6Save All Surplus YFold Material N
Fund Name ROYCE VALUE PLUS FUND-CONSULTANT CL
Comments A
Comments B
Comments C
Comments D
Drop Date
# of Enclosures01Schwab N
Enclosure TypeCode/DescriptionUnique ID
1SUMMARYRVP-CRK-0511552308
2
3
4
5
6
7
8
9
10
CUSIPMC0053Media TypeINKJETService TypeIC
Weight00000.700Meeting Date1900-01-01Special PrintN
Thickness00000.036Strat. Amount000020000Package Max001
Work CenterVPrint Date2011-04-30Print Name5 AM
*M89818-010*
For example:
from line
Order Quanity 0000002134Mail Method USPS STANDARD MAILSub-Level 010
I want only whatever is after Mail Mehod, In this case USPS Standard Mail, (also Mail Method is not a constant).
if the HTML Source code is needed i can post it.