This isn't really a programming issue necessarily, but the folks here are perhaps more likely to have an answer.
I have a plist file which consists of entires like this one:
<dict>
<key></key>
<string>http://www,url.com</string>
<key>title</key>
<string>9ISyAl7.jpg 720×960 pixels</string>
<key>lastVisitedDate</key>
<string>433770848.7</string>
<key>D</key>
<array>
<integer>1</integer>
</array>
<key>visitCount</key>
<integer>1</integer>
</dict>
There are over 5000 of these in the plist.
I'd like to get them into a spreadsheet with the URL in one column, the title in the next column, the last visited date in the next column and the visit count in the last column.
Does anyone know a quick way to accomplish this please?
I have a plist file which consists of entires like this one:
<dict>
<key></key>
<string>http://www,url.com</string>
<key>title</key>
<string>9ISyAl7.jpg 720×960 pixels</string>
<key>lastVisitedDate</key>
<string>433770848.7</string>
<key>D</key>
<array>
<integer>1</integer>
</array>
<key>visitCount</key>
<integer>1</integer>
</dict>
There are over 5000 of these in the plist.
I'd like to get them into a spreadsheet with the URL in one column, the title in the next column, the last visited date in the next column and the visit count in the last column.
Does anyone know a quick way to accomplish this please?