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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Regex, Regular Expression assistance needed in split pdf

Status
Not open for further replies.

KathleenA

Technical User
Jun 13, 2002
4
US
We are using the AutoSplit™ / AutoSplit Pro™ by EverMap to split documents.

It uses Regex, or regular expressions for more advanced splits.

I need to split a large report by VERSION ID (report version) and CASE ID (the client). The version id is on one line, left justified (time stamp, unneeded on right), and the case id is on the second line, left justified.

VERSION ID: ASB TIME : 06:33:38
CASE ID : C12345

A version can have many cases, and / or a case can have several versions. I need a Regex Expression to split the reports out and so far what I have attempted has not worked.

By themselves, VERSION ID: \w{3} and
CASE ID :\s+\w{1}\d{5} works,
but I need to define something that uses both criteria.

Thank you, Kathlelen
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top