View source code
Display the source code in std/xml.d from which this
page was generated on github.
Report a bug
If you spot a problem with this page, click here to create a
Bugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page.
Requires a signed-in GitHub account. This works well for small changes.
If you'd like to make larger changes you may want to consider using
local clone.
Variable std.xml.ElementParser.onStartTag
Register a handler which will be called whenever a start tag is encountered which matches the specified name. You can also pass null as the name, in which case the handler will be called for any unmatched start tag.
Example
// Call this function whenever a <podcast> start tag is encountered
onStartTag["podcast"] = (ElementParser xml)
{
// Your code here
//
// This is a a closure, so code here may reference
// variables which are outside of this scope
};
// call myEpisodeStartHandler (defined elsewhere) whenever an <episode>
// start tag is encountered
onStartTag["episode"] = &myEpisodeStartHandler;
// call delegate dg for all other start tags
onStartTag[null] = dg;
This library will supply your function with a new instance of ElementHandler, which may be used to parse inside the element whose start tag was just found, or to identify the tag attributes of the element, etc.
Note that your function will be called for both start tags and empty tags. That is, we make no distinction between <br></br> and <br/>.
Authors
Janice Caron
License
Copyright © 1999-2022 by the D Language Foundation | Page generated by ddox.