Need some QLingo help...

Alith7

Well-known member
I need someone who's really good with QLingo to give me a hand.

I have variable strings like this:

How high is an <i>NBA</i> basketball hoop?


I need to search the string for the <i>...</i>, remove the <i> and the </i> and make the part of the text string a different font from the rest of the string.

any ideas??
 
If there is no way that a < can appear inside the tags, you can do a simple GREP-search:

Search for:
Code:
<i>([^<]+)</i>
Replace with:
Code:
$1

And set Format (replace) to the character style you want.

Kind regards,
toronar
 

PressWise

A 30-day Fix for Managed Chaos

As any print professional knows, printing can be managed chaos. Software that solves multiple problems and provides measurable and monetizable value has a direct impact on the bottom-line.

“We reduced order entry costs by about 40%.” Significant savings in a shop that turns about 500 jobs a month.


Learn how…….

   
Back
Top