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