How is the {n,*} syntax processed by PRONOM?
See original GitHub issueThe document http://www.nationalarchives.gov.uk/aboutapps/fileformat/pdf/automatic_format_identification.pdf defines the syntax for binary PRONOM signatures.
In it, it says you can specify wildcard matches as follows:
{m-n}: wildcard matching between m-n bytes inclusive, where m and n are integers or ‘*’.
e.g.: 0x03 {1-2} 4D would match 0x03 3C 4D or 0x03 3C 88 4D.
e.g.: 0x03 {2-*} 4D would match 0x03 3C 88 4D or 0x03 3C 88 3F 4D
Are there actually any signatures that support the second form using the * wildcard?
One way it could work, using the example given above, gives two SubSequences:
0x03 {2-*} 4D
becomes:
SubSequence 1: 0x03 ?? ??
SubSequence 2: 0x4D
I’ve added two ?? bytes - since we’re saying there has to be a minimum gap of two between the two SubSequences.
Is this how PRONOM processes such syntax? Is there an example of one in PRONOM currently?
Issue Analytics
- State:
- Created 4 years ago
- Comments:9 (6 by maintainers)
Top Results From Across the Web
The pragmatics and syntax of pronoun preposing | SpringerLink
We provide an analysis of the pragmatics and syntax of Swedish pronoun preposing based on a study of spontaneously produced spoken language ...
Read more >Binding theory – The Science of Syntax - Pressbooks
In (10a), Marta c-commands sie, and they're co-indexed, so the pronoun is bound. The result is ungrammatical. In contrast, in (10b), the pronoun...
Read more >NLPA-Syntax
Classify each word in the following sentences as either a noun (N), verb (V), adjective. (A), preposition (P), determiner (D), pronoun (PRN) or...
Read more >The Role of Syntax During Pronoun Resolution - ACL Anthology
The current study examined the role of syntactic structure during pronoun resolu- tion. We correlated complexity measures.
Read more >Putting pronoun resolution in context: The role of syntax ...
We argue that, while the former are processed as part of the same DU as the matrix clause, the latter are processed as...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Awesome! I googled around bit didn’t find that.
On Fri, 6 Sep 2019, 18:16 Ross Spencer, notifications@github.com wrote:
PRONOM exports can all be found here in their full and native XML @nishihatapalmer. I was researching your problem earlier and it was easy enough to search across files in a text editor for the results you need.