vote up 2 vote down star

I have a bunch of XML that has lines that look like this

<_char font_name="/ITC Stone Serif Std Bold" italic="true" />

but sometimes look like this

<_char font_size="88175" italic="true" font_name="/ITC Stone Serif Std Bold" />

Here's what I need to do

  • Replace italic="true" with italic="false for every line that contains ITC Stone Serif Std Bold, regardless of whether it comes before OR after the italic part.

Can this be done with a single regex?

I'm not looking for a real-time solution. I just have a ton of XML files that have this "mistake" in them and I'm trying to do a global search-and-replace with PowerGrep which would require a single regex. If scripting's the only way to do it, then so be it.

flag

Why are you limited to a single regex? It seems an easier way to do this is with two regexes, one for each case. – paxdiablo Oct 13 '08 at 14:38
A single regex would be nice because of the way PowerGrep works. – Mark Biek Oct 13 '08 at 14:42

6 Answers

vote up 3 vote down check

Does the simple use of '|' operator satisfy you ?

name="/ITC Stone Sans Std Bold"[^>]italic="(true)"|italic="(true)"[^>]font_name="/ITC Stone Serif Std Bold"

That should detect any line with the attribute name before of after attribute italic with value true.

link|flag
That's probably the easiest way to do it. I was mostly wondering if there was some magical regex operator I didn't know about. – Mark Biek Oct 13 '08 at 14:39
Not to my knowledge... but may be a regexp guru can post a better solution. – VonC Oct 13 '08 at 14:42
This seems like the best approach for my purposes. – Mark Biek Oct 13 '08 at 14:48
vote up 1 vote down

Well, in general, using RE for XML parsing isn't a great idea. But if you really wanted, the easiest way would be to just do it in two lines:

if (/ITC Stone Serif Std Bold/) {
   s/italic="true"/italic="false"/g;
}
link|flag
3 lines? And that could match other font changes (something my solution also suffers from). – Jonathan Leffler Oct 13 '08 at 14:42
vote up 0 vote down

I'm not 100% sure, but I feel like something like XSLT might be better suited to this task, and depending upon what Regex engine you're using, I'm not sure that you can do this with a single regular expression.

link|flag
Clarification added to the OP. – Mark Biek Oct 13 '08 at 14:37
vote up 0 vote down

In Perl - untested:

while (<>)
{
    s/italic="true"/italic="false"/ if m%font_name="/ITC Stone Sans Std Bold" italic="true"|italic="true" font_name="/ITC Stone Serif Std Bold"%;
    print;
}

Very simple minded - might need a global qualifier, might need a more complex substitute if other parts of the same line could contain italic options.

Also - a thought - should you take this opportunity to make the notation uniform, so always put italic in front of (or behind) the font name?

link|flag
These are, unfortunately, auto-generated files. Otherwise I'd be all in favor of standardizing. Luckily I only have to do this once. – Mark Biek Oct 13 '08 at 15:41
vote up 0 vote down
Pattern: /(<_char(?=(?:\s+\w+="[^"]*")*?\s+font_name="[^"]*?ITC Stone Serif Std Bold[^"]*")(?:\s+\w+="[^"]*")*?\s+italic=")true(?=")/
Replacement: '$1false'
link|flag
vote up 0 vote down

Perl 5.10

Using new features of Perl 5.10.

s(
 <_char \s* [^>]*? \K (?: (?&font) \s+ (?&italic) | (?&italic) \s+ (?&font) )
 (?(DEFINE)
  (?<font>font_name="/ITC[ ]Stone[ ]Serif[ ]Std[ ]Bold")
  (?<italic>italic="true")
 )
){
 $+{font} . 'italic="false"'
}xge

Warning: not tested.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.