Escaping XML "queries"

Hi there,

I’m stuck on an XML query because the XML uses the reserved word “for” in it’s namespace;

The tricky bit of the XML looks like this;

  
<AwayRecord win="3" draw="1" lost="1" for="11" against="7" /> 
 
  <HomeRecord win="4" draw="0" lost="1" for="10" against="3" /> 
 

This works

sFHomeFor = H2HData.ClubRecord*.SeasonRecord.ResultsBreakdown.AwayRecord.@against

but this

 
sFHomeFor = H2HData.ClubRecord*.SeasonRecord.ResultsBreakdown.AwayRecord.@for

causes a compile error;
“1084: Syntax error: expecting identifier before for.”

Any ideas? This one’s got me stumped…

Cheers

Ben