[CODE4LIB] Job: Digital Anthology Encoding Specialist at Folger Shakespeare Library

2015-07-09 Thread jobs
 Digital Anthology Encoding Specialist
Folger Shakespeare Library
Washington, D.C.

The Folger Shakespeare Library, located on Capitol Hill in Washington, D.C.,
is seeking an encoding specialist for a 2 year NEH grant funded position
working on our Digital Anthology of non-Shakespearean drama (or early modern
English drama). The Folger is a world-class research and cultural center on
Shakespeare and the early modern age. Home to the world's largest and finest
collection of Shakespeare materials, the Folger offers activities that range
from scholarly seminars to theatrical performances, from K-12 outreach to
exhibitions and lectures.

  
The Digital Anthology Encoding Specialist (DAES) will work closely with our
CLIR Postdoctoral Fellow in Data Curation on a new project to establish clear
and consistent encoding of 36 carefully selected plays from the early modern
period using Text Encoding Initiative (TEI) markup. The DAES will be
responsible for helping develop the XML schema, correcting current markup, and
enhancing existing encoding work to correctly identify and verify such
elements as act and scene divisions, speakers and speech prefixes, cast lists,
stage directions, or other information. They will help establish standards and
workflows for coding correction, participate in project documentation, and
identify areas for further improvement as the project develops. This is an
exciting opportunity to be in on the start of a project that will open the
study of these, and other, plays to a wider audience on open and free
platforms. This is a grant funded position at no more than 50K a year plus
full benefits.

  
The ideal candidate for this position will have a working knowledge of early
modern drama, including the works of Christopher Marlowe,
John Marston, and others, as well as significant training or experience in TEI
markup language. Requirements: B.A. in relevant field with a preference for
M.A. in early modern English drama, history of early modern theatre, or
literature, or equivalent professional experience, strong knowledge of Early
Modern Drama, experience with TEI markup, and familiarity with the concepts
behind Early English Books Online-Text Creation Partnership (EEBO-TCP).
Preference will be given to candidates familiar with early modern descriptive
bibliography, text mining, topic modeling, digital indexing, and/or digital
publication.

  
Interested applicants should submit their resume and a cover letter, with the
subject line 'DAES' to j...@folger.edu or by mail at Attn:HR/DAES, Folger
Shakespeare Library, 201 E Capitol St SE, Washington, DC 20003. Incomplete
applications will not be considered. No phone calls please. EOE.



Brought to you by code4lib jobs: http://jobs.code4lib.org/job/21802/
To post a new job please visit http://jobs.code4lib.org/


[CODE4LIB] position description

2015-07-09 Thread Eric Lease Morgan
Below is a position description, posted by request:

  East Carolina University’s Joyner Library is seeking to fill the
  position of Head of the Application & Digital Services (ADS) department.
  The ADS team has a track record of implementing open source solutions
  and developing custom applications. This team works closely with
  personnel across ECU Libraries to develop, manage, and support
  large-scale applications, such as the Digital Collections repository,
  the ScholarShip Institutional Repository, and the Blacklight library
  catalog discovery layer. The successful candidate will provide
  leadership and vision for the ADS department and ensure departmental
  goals are met.

  The Head’s primary roles will be as a project manager for new and
  existing development projects and manager of the staff in the department
  (currently 6 people). Knowledge of and ability to institute and
  communicate a development process to analyze, design, develop,
  implement, and evaluate each project will be critical. Key skills in the
  position will be effective communication and decision making, as well as
  the ability to work with stakeholders to maintain and improve tools and
  interfaces.

  Additionally, this person will collaborate with colleagues to establish
  and manage metrics for measuring, analyzing, and optimizing user
  satisfaction. An important role for the Head of ADS will be to monitor
  trends in web design/development within the library environment and plan
  strategically to implement innovative changes for the Libraries. Also
  important is the responsibility of setting priorities, ensuring
  professional growth of the members of the department, and managing
  department activities to assure the best use of time and resources to
  meet project-defined objectives and deliverables.


For more detail, see: http://www.ecu.edu/cs-lib/about/job942036.cfm

—
Eric Lease Morgan


Re: [CODE4LIB] Regex Question

2015-07-09 Thread Matt Sherman
Thanks for the advice everyone.  This is all helpful stuff that I need to
spend some time with.

On Thu, Jul 9, 2015 at 3:38 AM, Kool,Wouter  wrote:

> I also recommend this site: http://www.regular-expressions.info/
> If you do not want to work inside MSWord and want to use only regexes not
> xpath, you could of course do something like:
>
> .*[A-Z ,;:]+.*
>
> But, depending on your environment, you might be troubles by newlines in
> the data (regex engines tend to chunk your data, and they tend to use
> newlines by default).
>
> If you just want to list the titles you could grab the title proper like:
>
> .*([A-Z ,;:]+).*. The part between ( and ) is then
> usually accessible as $1 (in a language like Perl) or \1 (in a text editor).
>
> Wouter
>
>
>
> -Original Message-
> From: Code for Libraries [mailto:CODE4LIB@LISTSERV.ND.EDU] On Behalf Of
> Harper, Cynthia
> Sent: woensdag 8 juli 2015 19:51
> To: CODE4LIB@LISTSERV.ND.EDU
> Subject: Re: [CODE4LIB] Regex Question
>
> I like this regex add-in for Excel:
> http://www.codedawn.com/index/new-excel-add-in-regex-find-replace
> Cindy Harper
>
> -Original Message-
> From: Code for Libraries [mailto:CODE4LIB@LISTSERV.ND.EDU] On Behalf Of
> Kyle Banerjee
> Sent: Tuesday, July 07, 2015 6:22 PM
> To: CODE4LIB@LISTSERV.ND.EDU
> Subject: Re: [CODE4LIB] Regex Question
>
> For clarity, Word does regex, not just wildcards.  It's not quite as
> complete as what you'd get with some other environments such as OpenOffice
> Writer since matching is lazy rather than greedy which can be a big deal
> depending on what you're doing and there are a couple other catches --
> notably no support for "|" -- but it's reasonably powerful. There is no
> regexp capability in Excel unless you're willing to use VBA.
>
> kyle
>
> On Tue, Jul 7, 2015 at 1:10 PM, Gordon, Bonnie 
> wrote:
>
> > OpenOffice Writer (or a similar program) may be useful for this. It
> > would allow you to search by format while using a more controlled
> > regular expression than MS Word's wildcards.
> >
> > -Original Message-
> > From: Code for Libraries [mailto:CODE4LIB@LISTSERV.ND.EDU] On Behalf
> > Of Matt Sherman
> > Sent: Tuesday, July 07, 2015 12:45 PM
> > To: CODE4LIB@LISTSERV.ND.EDU
> > Subject: Re: [CODE4LIB] Regex Question
> >
> > Thanks everyone, this really helps.  I'll have to work out the
> > italicized stuff, but this gets me much closer.
> >
> > On Tue, Jul 7, 2015 at 12:43 PM, Kyle Banerjee
> > 
> > wrote:
> >
> > > Y'all are doing this the hard way. Word allows regex replacements as
> > > well as format based criteria.
> > >
> > > For this particular use case:
> > >
> > >1. Open the find/replace dialog (CTL+H)
> > >2. In the "Find what" box, put (<*>) -- make sure the option for
> "Use
> > >Wildcards" is selected, and for the format, specify italic
> > >3. For the"Replace box," just put \1 and specify All caps
> > >
> > > And you're done
> > >
> > > kyle
> > >
> > > On Tue, Jul 7, 2015 at 9:32 AM, Thomas Krichel 
> > > wrote:
> > >
> > > >   Eric Phetteplace writes
> > > >
> > > > > You can match a string of all caps letters like "[A-Z]"
> > > >
> > > >   This works if you are limited to English. But in a multilingual
> > > >   setting, you need to watch out for other uppercases, such as
> > > >   крихель vs КРИХЕЛЬ. It then depends in the unicode implementation
> > > >   of your regex application. In Perl, for example, you would use
> > > >   [[:upper:]].
> > > >
> > > >
> > > > --
> > > >
> > > >   Cheers,
> > > >
> > > >   Thomas Krichel  http://openlib.org/home/krichel
> > > >   skype:thomaskrichel
> > > >
> > >
> >
>


[CODE4LIB] Job: Head, Application & Digital Services at East Carolina University

2015-07-09 Thread jobs
Head, Application & Digital Services
East Carolina University
Greenville

East Carolina University's Joyner Library is seeking a Head of Application &
Digital Services.

  
**Job Description**  
  
The Head's primary roles will be as a project manager for new and existing
development projects and manager of the staff in the department (currently 6
people). Knowledge of and ability to institute and communicate a development
process to analyze, design, develop, implement, and evaluate each project will
be critical. Key skills in the position will be effective communication and
decision making, as well as the ability to work with stakeholders to maintain
and improve tools and interfaces. Knowledge of these technologies support
instruction/learning throughout the university.

  
Additionally, this person will collaborate with colleagues to establish and
manage metrics for measuring, analyzing, and optimizing user satisfaction. An
important role for the Head of ADS will be to monitor trends in web
design/development within the library environment and plan strategically to
implement innovative changes for the Libraries, and implement information
technology and/or multimedia approaches that directly support instructional
delivery. Also important is the responsibility of setting priorities, ensuring
professional growth of the members of the department, and managing department
activities to assure the best use of time and resources to meet project-
defined objectives and deliverables.

  
**Minimum Qualifications**  
  
* A master's degree in library/ information science or an alternative relevant 
degree, such as a master's in computer science, management information systems, 
technology systems, or network technology  
* Demonstrated leadership ability  
* Success at developing and communicating a vision using existing data for long 
range planning  
* Knowledge of project management methodologies, principles and practices  
* Managerial/supervisory experience, preferably of technical staff  
* Recent project management experience  
* Ability to prioritize competing demands in a fast-paced environment  
* Demonstrated ability to manage multiple projects of different sizes 
simultaneously and deliver successful products/solutions  
* Client-facing experience  
* Excellent oral and written communication skills  
* Knowledge of trends in application development and web design.  
  
Qualifying degrees must be received from appropriately accredited insitutions
and conferred by the time of hire.

  
**Preferred:**  
* At least two years' work experience in an academic library, archives, or 
museum IT department  
* Experience with open-source software, such as Dspace or Blacklight  
  
Attach a resume, cover letter and list of three references to include email,
mailing addresses and phone numbers.

  
Finalists will be asked to make a brief presentation during the on-campus
interview.

  
  



Brought to you by code4lib jobs: http://jobs.code4lib.org/job/21785/
To post a new job please visit http://jobs.code4lib.org/


[CODE4LIB] Job: Digital Architect and Infrastructure Librarian at University of Miami

2015-07-09 Thread jobs
Digital Architect and Infrastructure Librarian
University of Miami
Coral Gables

**Digital Architect and Infrastructure Librarian**  
  
The University of Miami Libraries seeks applications for a collaborative and
innovative DigitalInfrastructure Librarian. Reporting to
the Associate Dean for Digital Strategies and working
withina growing digital strategies team, the Digital
Infrastructure Librarian, a newly defined position inthe UM
Libraries, will manage the current systems and technical workflows that
support thedigital library infrastructure. The UM Libraries
are undertaking a review of our current

infrastructure (principally made up of CONTENTdm, Digital Commons, Archon,
Omeka, Kaltura,and homegrown web exhibits). This position
will play a critical role in leading the evaluation, aswell
as the work to design and implement systems and workflows that will better
serve our usersand allow us to better leverage and support
emerging technologies and standards. The Digital

Infrastructure Librarian will work closely with the Web and Application
Development team, theHead of Digital Production and staff,
special collections curators, Cataloging and
MetadataServices, and other library staff integrally
involved in our digital infrastructure and content.

  
  
UNIVERSITY: The University of Miami is one of the nation's leading research
universities in acommunity of extraordinary diversity and
international vitality. The University is
privatelysupported, non‐sectarian institution, located in
Coral Gables, Florida, on a 260‐acre subtropicalcampus. The
University comprises 11 degree granting schools and colleges,
includingArchitecture, Arts and Sciences, Business
Administration, Communication, Education, Engineering,

Law, Medicine, Music, Nursing, and Marine and Atmospheric Science
(www.miami.edu).

  
THE LIBRARY: The University of Miami Libraries (www.library.miami.edu) rank
among the top50 research libraries in North America with a
collection of 3.6 million volumes including 771,000ebooks,
and 92,958 current serials titles including 90,550 electronic journals. The
Otto G. RichterLibrary lies in the center of the Coral
Gables campus and serves as the central library for the

University. Other University of Miami libraries include the Paul Buisson
Architecture Library, theJudi Prokop Newman Business
Information Resource Center, the Marta & Austin Weeks
MusicLibrary, and the Marine and Atmospheric Science
Library. The University also has independentmedical and law
libraries. The Libraries provide support and services for approximately
10,370undergraduates, 5,259 graduate students, and 13,058
full and part time faculty andstaff. Excluding the
independent libraries, the University Libraries employ 56 professional and
90support staff and are a member of ARL, CNI, ASERL, CLIR,
NERL, OCLC Research Library Partners,SEFLIN, IFLA, IATUL,
HathiTrust, APTrust, DPN, and Lyrasis.

  
Essential Duties and Responsibilities include the following:

  
Performance:

  * In close collaboration with the Web and Application Development unit and 
SystemsAdministrator, manage the overall architecture of the digital library 
infrastructure.
  * Work with the Head of Digital Production, the Digital Initiatives Metadata 
Librarian, andthe Systems Librarian to ensure robust workflows for ingest, 
management, preservation,and access to digital content.
  * Lead a team to assess the current infrastructure through appropriate 
assessment tools,gather user stories (requirements) from curators, digital 
production staff, users, andothers, and make recommendations for changes in the 
infrastructure.
  * Dependent on recommendations, lead a team to develop specifications for 
changes in theinfrastructure.
  * Serve as the product owner for any infrastructure development or 
implementation of avended system, including, actively participating in 
development process through provisionof feedback and testing, and serving as 
the communication channel between the users andthe development team.
  * Develop migration strategies for content as needed.
  * Write and maintain documentation in collaboration with other staff as 
appropriate.
  * Continue assessment of infrastructure and workflows.
  * Maintain familiarity with national and international best practices, 
established andemerging technologies, and applications in the digital library 
sphere.
  * Supervise and manage staff as needed.
  
Service:

  * Network, collaborate, and actively participate in local, regional, 
national, and/or
  * international organizations regarding digital library issues;
  * Represent and promote the University of Miami Libraries in local, 
state-wide, regional,national, or international organizations, as appropriate; 
and
  * Serve on/participate in Libraries and University organizations, committees, 
task forces,and teams as appropriate.
  
Minimum Qualifications:

  * An ALA-accredited MLS or MLIS degree and 2 years experience working with 
digital librarysystems o

Re: [CODE4LIB] Fedora 4 repositories with open API?

2015-07-09 Thread Patrick Murray-John

Esmé,

Thanks. I've got my own going okay, and the basics seem to work. The 
next step, as always, is seeing what happens with real live data, rather 
than the minimal test data I have in there. Live-fire data, I find, 
exposes more and more unanticipated quirks!


Patrick

On 07/08/2015 04:27 PM, Esmé Cowles wrote:

And if there aren't any open Fedora 4 repositories forthcoming, you can always 
use fcrepo4-vagrant to spin up your own pretty easily:

https://github.com/fcrepo4-labs/fcrepo4-vagrant

-Esme


On 07/08/15, at 4:01 PM, Tom Cramer  wrote:

Hi Patrick,

To my knowledge, Penn State has one of the current Fedora 4 repositories in 
production; a few others are close (including the Royal Library of Denmark). 
You might also want to post th is query on the fedora-t...@googlegroups.com 
and/or fedora-commun...@googlegroups.com list.

Hope this helps,

- Tom

PS. Has there been any thought that Omeka S might also be IIIF-friendly 
, and able to present image-based resources from any IIIF-compatible 
repository by consuming both the IIIF image and presentation APIs 
? I can muster up some live IIIF API 
endpoints, if you are interested.






On Jul 8, 2015, at 9:07 AM, Patrick Murray-John  wrote:

Hi all,

The Omeka  web publication tool for GLAMs is working on a new 
version, Omeka S, that will include modules for connecting to various other systems, 
including Fedora 4.

Does anyone have a Fedora 4 installation with open API that we could use to 
test the basic reading and import mechanisms against? This would be for 
development and testing purposes only.

Many thanks,

Patrick Murray-John
Omeka Director of Developer Outreach


Re: [CODE4LIB] Fedora 4 repositories with open API?

2015-07-09 Thread Patrick Murray-John

Tom,

Many thanks. I'll look there, and also look to those groups. Thanks for 
the tip!


On the IIIF question, yep! It's on our mind: 
https://github.com/omeka/omeka-s/issues/182


Patrick

On 07/08/2015 04:01 PM, Tom Cramer wrote:

Hi Patrick,

To my knowledge, Penn State has one of the current Fedora 4 repositories in 
production; a few others are close (including the Royal Library of Denmark). 
You might also want to post th is query on the fedora-t...@googlegroups.com 
and/or fedora-commun...@googlegroups.com list.

Hope this helps,

- Tom

PS. Has there been any thought that Omeka S might also be IIIF-friendly 
, and able to present image-based resources from any IIIF-compatible 
repository by consuming both the IIIF image and presentation APIs 
? I can muster up some live IIIF API 
endpoints, if you are interested.






On Jul 8, 2015, at 9:07 AM, Patrick Murray-John  wrote:

Hi all,

The Omeka  web publication tool for GLAMs is working on a new 
version, Omeka S, that will include modules for connecting to various other systems, 
including Fedora 4.

Does anyone have a Fedora 4 installation with open API that we could use to 
test the basic reading and import mechanisms against? This would be for 
development and testing purposes only.

Many thanks,

Patrick Murray-John
Omeka Director of Developer Outreach


Re: [CODE4LIB] Fedora 4 repositories with open API?

2015-07-09 Thread Jeremy Nelson
Another option for an easier(?) way to  run Fedora 4 is with this Docker image: 
https://registry.hub.docker.com/u/jermnelson/semantic-server-core/. You still 
have to manually start-up tomcat but then you can connect to a Fedora 4 
instance running on port 8080 on your Docker host.

This and related images are in active development and debugging so let me know 
of any problems or questions.

Thanks,
Jeremy Nelson
Metadata and Systems Librarian
Colorado College

-Original Message-
From: Code for Libraries [mailto:CODE4LIB@LISTSERV.ND.EDU] On Behalf Of Esmé 
Cowles
Sent: Wednesday, July 08, 2015 2:28 PM
To: CODE4LIB@LISTSERV.ND.EDU
Subject: Re: [CODE4LIB] Fedora 4 repositories with open API?

And if there aren't any open Fedora 4 repositories forthcoming, you can always 
use fcrepo4-vagrant to spin up your own pretty easily:

https://github.com/fcrepo4-labs/fcrepo4-vagrant

-Esme

> On 07/08/15, at 4:01 PM, Tom Cramer  wrote:
> 
> Hi Patrick,
> 
> To my knowledge, Penn State has one of the current Fedora 4 repositories in 
> production; a few others are close (including the Royal Library of Denmark). 
> You might also want to post th is query on the fedora-t...@googlegroups.com 
> and/or fedora-commun...@googlegroups.com list.
> 
> Hope this helps, 
> 
> - Tom
> 
> PS. Has there been any thought that Omeka S might also be IIIF-friendly 
> , and able to present image-based resources from any 
> IIIF-compatible repository by consuming both the IIIF image and presentation 
> APIs ? I can muster up some live IIIF 
> API endpoints, if you are interested. 
> 
> 
> 
> 
> 
>> On Jul 8, 2015, at 9:07 AM, Patrick Murray-John  
>> wrote:
>> 
>> Hi all,
>> 
>> The Omeka  web publication tool for GLAMs is working on a 
>> new version, Omeka S, that will include modules for connecting to various 
>> other systems, including Fedora 4.
>> 
>> Does anyone have a Fedora 4 installation with open API that we could use to 
>> test the basic reading and import mechanisms against? This would be for 
>> development and testing purposes only.
>> 
>> Many thanks,
>> 
>> Patrick Murray-John
>> Omeka Director of Developer Outreach


[CODE4LIB] Early Bird Registration Ends July 17 for VIVO Conference

2015-07-09 Thread McDonald, Robert H.
Just wanted to pass this information along. We hope to see many of you in 
Cambridge.

Best,

Robert


VIVO 2015 Conference - August 12-14 - Cambridge MA
Register Now Before the 
Second Early Bird Deadline

It's your last chance to take advantage of the discounted early bird rate. 
Register by July 17th and SAVE $100! With engaging industry experts, breakout 
sessions, and fun networking events, the Sixth Annual VIVO Conference is a 
must-attend event.


http://bit.ly/1HhWQwQ



Register online today



Don't Forget to Register for Wednesday 
Workshops

The VIVO 2015 workshops enable participants to learn from and interact with 
experts and peers. These workshops cover a variety of topics, so there is sure 
to be something to suit your interest.

Morning Workshops (8:30am - 
12:00pm)

  *   Ontology Editing and Creating Semantic Applications
  *   Getting More From Your VIVO: Generating Reports and Functional Datasets 
For Analysis
  *   Introduction to VIVO: Planning, Policy, and Implementation

Afternoon Workshops (1:00pm - 
4:30pm)

  *   Altmetrics 101 - Hands on Introduction to Altmetrics
  *   Awesome Apps to Enhance Your VIVO
  *   Managing Your Data Flows: Architecture and Data Provenance For Your 
Institution

If you are currently registered for the conference, it's not too late to sign 
up for your Wednesday Workshops. Simply email us at 
v...@designingevents.com. If you haven't 
registered for the conference yet, just choose your workshops during the 
registration process.


**
Robert H. McDonald
Associate Dean for Library Technologies
Deputy Director-Data to Insight Center, Pervasive Technology Institute
Indiana University
1320 East 10th Street
Herman B Wells Library 234
Bloomington, IN 47405
Phone: 812-856-4834
Email: rhmcd...@indiana.edu
Skype: rhmcdonald
ORCID: http://orcid.org/-0003-4258-0982
ISNI: http://go.iu.edu/nTM


Re: [CODE4LIB] Regex Question

2015-07-09 Thread Kool,Wouter
I also recommend this site: http://www.regular-expressions.info/
If you do not want to work inside MSWord and want to use only regexes not 
xpath, you could of course do something like:

.*[A-Z ,;:]+.*

But, depending on your environment, you might be troubles by newlines in the 
data (regex engines tend to chunk your data, and they tend to use newlines by 
default).

If you just want to list the titles you could grab the title proper like:

.*([A-Z ,;:]+).*. The part between ( and ) is then usually 
accessible as $1 (in a language like Perl) or \1 (in a text editor).

Wouter



-Original Message-
From: Code for Libraries [mailto:CODE4LIB@LISTSERV.ND.EDU] On Behalf Of Harper, 
Cynthia
Sent: woensdag 8 juli 2015 19:51
To: CODE4LIB@LISTSERV.ND.EDU
Subject: Re: [CODE4LIB] Regex Question

I like this regex add-in for Excel: 
http://www.codedawn.com/index/new-excel-add-in-regex-find-replace
Cindy Harper

-Original Message-
From: Code for Libraries [mailto:CODE4LIB@LISTSERV.ND.EDU] On Behalf Of Kyle 
Banerjee
Sent: Tuesday, July 07, 2015 6:22 PM
To: CODE4LIB@LISTSERV.ND.EDU
Subject: Re: [CODE4LIB] Regex Question

For clarity, Word does regex, not just wildcards.  It's not quite as complete 
as what you'd get with some other environments such as OpenOffice Writer since 
matching is lazy rather than greedy which can be a big deal depending on what 
you're doing and there are a couple other catches -- notably no support for "|" 
-- but it's reasonably powerful. There is no regexp capability in Excel unless 
you're willing to use VBA.

kyle

On Tue, Jul 7, 2015 at 1:10 PM, Gordon, Bonnie  wrote:

> OpenOffice Writer (or a similar program) may be useful for this. It 
> would allow you to search by format while using a more controlled 
> regular expression than MS Word's wildcards.
>
> -Original Message-
> From: Code for Libraries [mailto:CODE4LIB@LISTSERV.ND.EDU] On Behalf 
> Of Matt Sherman
> Sent: Tuesday, July 07, 2015 12:45 PM
> To: CODE4LIB@LISTSERV.ND.EDU
> Subject: Re: [CODE4LIB] Regex Question
>
> Thanks everyone, this really helps.  I'll have to work out the 
> italicized stuff, but this gets me much closer.
>
> On Tue, Jul 7, 2015 at 12:43 PM, Kyle Banerjee 
> 
> wrote:
>
> > Y'all are doing this the hard way. Word allows regex replacements as 
> > well as format based criteria.
> >
> > For this particular use case:
> >
> >1. Open the find/replace dialog (CTL+H)
> >2. In the "Find what" box, put (<*>) -- make sure the option for "Use
> >Wildcards" is selected, and for the format, specify italic
> >3. For the"Replace box," just put \1 and specify All caps
> >
> > And you're done
> >
> > kyle
> >
> > On Tue, Jul 7, 2015 at 9:32 AM, Thomas Krichel 
> > wrote:
> >
> > >   Eric Phetteplace writes
> > >
> > > > You can match a string of all caps letters like "[A-Z]"
> > >
> > >   This works if you are limited to English. But in a multilingual
> > >   setting, you need to watch out for other uppercases, such as
> > >   крихель vs КРИХЕЛЬ. It then depends in the unicode implementation
> > >   of your regex application. In Perl, for example, you would use
> > >   [[:upper:]].
> > >
> > >
> > > --
> > >
> > >   Cheers,
> > >
> > >   Thomas Krichel  http://openlib.org/home/krichel
> > >   skype:thomaskrichel
> > >
> >
>