Returns a list of the designers in the company: : Filter « XML « Flash / Flex / ActionScript






Returns a list of the designers in the company:

 

package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){

        var staff:XML = <STAFF>
          <EMPLOYEE ID="501" HIRED="109">
            <NAME>M</NAME>
            <MANAGER>J</MANAGER>
            <SALARY>25000</SALARY>
            <POSITION>Designer</POSITION>
          </EMPLOYEE>
        
          <EMPLOYEE ID="238" HIRED="101">
            <NAME>J</NAME>
            <MANAGER>D</MANAGER>
            <SALARY>55000</SALARY>
            <POSITION>Manager</POSITION>
          </EMPLOYEE>
        </STAFF>
        
        trace(staff.*.(POSITION == "Designer"));
    }
  }
}

        








Related examples in the same category

1.Filtering XML Data
2.Returns a list of employees with a salary less than or equal to $35,000.
3.Returns a list of employees with a salary between $35,000 and $50,000:
4.A list of employees whose ID number is 238
5.Retrieve a list of employees hired in the year 2004
6.Searching XML
7.Use regular repression to filter tag value