yes exactly.... you nailed it down
Main Topics
Browse All TopicsI have a page where the data is in the below pattern
<html> <body>
<table>
<tr>
<td class='heading'>
some text
</td>
</tr>
<tr>
<td class='subheading'>sub1</t
</tr>
<tr>
<td class='subheading'>sub3</t
</tr>
</table>
<table>
<tr>
<td class='heading'>
some other heading
</td>
</tr>
<tr>
<td class='subheading'>sub1</t
</tr>
<tr>
<td class='subheading'>sub3</t
</tr>
</table>
I want to be able to extract all the headings and subheadings and associate the proper heading with their subheading..
what would be the easiest way to do this in regex or is there any other way to do this ?
This question is in progress.
Our experts are working on an answer right now.
Sign up for immediate access to the solution once it becomes available.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
This pattern works for me:
<td\s*class='heading'>\n?(.*
Note I used @ as the pattern terminator, and the s flag to allow . to match newlines. I don't know exactly how this regex gets coded in cold fusion.
The structure of the resulting array is somewhat different to that suggested by themrrobert, but gives you what you need
Business Accounts
Answer for Membership
by: themrrobertPosted on 2009-11-04 at 07:37:10ID: 25740362
As in:
ub4 ng2] => Array (
Array(
[heading] => Array (
[0]Sub1
[1]Sub2
[2]Sub3
[3]S
)
[headi
[0]Sub1
....
[3]Sub 4
)
)
??