跳到主要內容

Convert formatted contents notes to unformated - example 2

Question:

I wonder whether anyone has found a way to convert formatted content notes to unformatted

An example is:

=505  00$tOn comparison /$rJonathan Z. Smith --$tPolis-religion and its alternatives in the Roman provinces /$rGreg Woolf --$tFrom republic to principate : priesthood, religion and ideology /$rRichard Gordon --$tFeature of Roman religion /$rArthur Darby Nock --$tLudi saeculares and the Carmen saeculare /$rDenis Feeney --$tCults, myths, and politics at the beginning of the empire /$rJohn Scheid, trans. Philip Purchase --$tTheological efforts of the Roman upper classes in the first century BC /$rArnaldo Momigliano --$tHierarchy and structure in Roman polytheism : Roman methods of conceiving action /$rJohn Scheid, trans. Philip Purchase --$tReligious toleration in republican Rome /$rJohn North --$tReligion for the empire /$rClifford Ando --$tLoca sancta /$rSabine MacCormack --$tComplex of times : no more sheep on Romulus' birthday /$rMary Beard --$tRoman state religion in the mirror of Augustan and Late Republican apologetics /$rCarl Koch, trans. Christpher Barnes --$tHistorical development of Roman religion : an overview /$rGeorg Wissowa, trans. Christopher Barnes.​

To turn to 

=505  00$a[Contents]

by removing all subfields ($t, $r, $getc.) and keeping (or turning the first subfield) into $a.

See also:

=505  00$g1.$tModern purebred breeding : a scientific or cultural method? --$g2.$tThe light horse --$g3.$tThe heavy horse --$g4.$tThe farmer's horse --$g5.$tFinding horses for the British army --$g6.$tAmerican horses and war : a national and international issue --$g7.$tCanada's equine war effort : a story of conflicting interests --$g8.$tUnderstanding heredity : the 1890 report of the British Royal Commission on horse breeding --$g9.$tProducing better horses in the United States : attempts to control fraudulent activity and market share --$g10.$tThe Canadian experience in horse regulation : continental and national concerns --$g11.$tAspects of a pervasive horse culture in society --$g12.$tConclusion.

Answer: The answer is solved by MarcEdit develop, Terry Reese

1) Edit Field Data 
Field: 505
Find: (\$[a-z])
Replace: [blank or space or whatever you are turning the data into]

Check use regular expressions


Then you have to do a second step because this removes all delimiters -- and you need to add one back after the indicators.  You can do that with a replace function:

Find: (=505.{4})([^$])(.*)
Replace: $1$$a$2$3

check use regular expressions.

留言

這個網誌中的熱門文章

Regex - Converting formatted content notes (505) to unformatted

This is the question asked in the MarcEdit Listserv, and answered and solved by MarcEdit experts and librarians. Question: Converting formatted content notes (505) to unformatted. =505 00$tYour love$g(4:17) --$tThe driver /$r(featuring Dierks Bentley and Eric Pasley)$g(4:34) --$tDancing around it$g(4:38) --$tSouthern accents /$r(featuring Stevie Nicks)$g(4:15) --$tLonely girl$g(2:59) --$tThe only one who gets me$g(3:46) --$tRound in circles$g(4:17) --$tI wish you were here /$r(featuring Miranda Lambert)$g(3:48) --$tLeaving Nashville$g(3:29). To turn to =505 0\$aYour love -- The driver / featuring Dierks Bentley and Eric Pasley -- Dancing around it -- Southern accents / featuring Stevie Nicks -- Lonely girl -- The only one who gets me -- Round in circles -- I wish you were here / featuring Miranda Lambert -- Leaving Nashville. =505 0\$a[Contents] 1) By changing 2nd indicator to from 0 to "\" 2) Removing all subfields ($t, $r, $g) 3) Removing the time in paren...
Some definitions for Regular Expression - Literal, Metacharacter, target string, escape, sequence and search expression Literal - A literal is any character we use in search or matching expression, for example to find ind in w ind ows the ind is a literal string - each character plays a part in the search, it is literally the string we want to find. Metachatacter - A metacharacter is one or more special characters that have a unique meaning and not NOT used as literals in the search expression, for example, the character ^ (circumflex or caret) is a metacharacter. [ ] - ^ 1. A simple find and replace to change the indicator and first subfield code. Find: =505 00$t Replace: =505 0\$a Result: =505  0\$aYour love$g(4:17) --$tThe driver /$r(featuring Dierks Bentley and Eric Pasley)$g(4:34) --$tDancing around it$g(4:38) --$tSouthern accents /$r(featuring Stevie Nicks)$g(4:15) --$tLonely girl$g(2:59) --$tThe only one who gets me$g(3:46) --$tRound in circles$g...