SOME EXAMPLES OF DELIMITED X-SAMPA ================================================================ Only lines starting with dash are X-SAMPA: - Dash itself not part of X-SAMPA string * Begin marker : Regular expression * Expression : ^- * End marker : End of line ---------------------------------------------------------------- Everything is X-SAMPA, except things that start with hash: # * Begin marker : Begin of line * End marker : Regular expression * Expression : (\s+#.*|^#.*|)$ ---------------------------------------------------------------- Everything is X-SAMPA Don't use this: * Begin marker : Begin of text * End marker : End of text Use this instead: * Begin marker : Begin of line * End marker : End of line This way, if there is an error on one line, parsing resumes on the next line. Otherwise, all text after the first error is skipped. ----------------------------------------------------------------