---
title: "Parsers"
slug: "parsers"
updated: 2024-11-26T21:49:18Z
published: 2024-11-26T21:49:18Z
canonical: "help.tritondigital.com/parsers"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://help.tritondigital.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Parsers

This section provides reference information for the parsers. Parsers take data from the RAS and convert it into variables for mapping into STWCue format. You can use parser variables in a mapping processor by enclosing it in curly braces {like_this}.

**For example:**

Raw data from RAS:

**[London Calling,The Clash,198]**

The parser is configured to produce three variables: **title**, **artist**, and **duration**.

![Parser-field-mapping-example](https://cdn.document360.io/7124b381-0a94-401a-abbd-9df9c4ea5dff/Images/Documentation/b6619d7a-8900-420b-bfb8-c5c315ebda45.png)

The variables will get the following values for this specific message:

**title = "London Calling"** **artist = "The Clash"** **duration = "198"**

You can then use these variables in the mapping processor by referring to them using **{title}**, **{artist}**, or **{duration}**:

![Parser-mapping-items-example](https://cdn.document360.io/7124b381-0a94-401a-abbd-9df9c4ea5dff/Images/Documentation/3e1a3e6c-1164-493f-b76f-4330883bc7b8.png)

In addition to the variables that you define in a parser, there are two internal variables that could be used in the mapping processor:

- **{timestamp}** – set to the current time in Unix time (milliseconds).
- **{eventid}** – a GUID that is unique for each cue point.

**Parsers described in this section include:**

- [Separator Parser](/user/docs/separator-parser)
- [Field Mapping](/user/docs/field-mapping)
- [Key Value Parser](/user/docs/key-value-parser)
- [Offset Parser](/user/docs/offset-parser)
- [Offset Mapping](/user/docs/offset-mapping)
- [Xml Parser](/user/docs/xml-parser)
- [Key Mapping](/user/docs/key-mapping)
- [Regex Parser](/user/docs/regex-parser)
- [JSON Parser](/user/docs/json)
