Value parser
Transformer, allows the user to parse lists and other structured texts from a literal, creating multiple literals.
- Predicate for input values
- IRI of the predicate linking to the literal to be processed
- Regular expression with groups
- Java regular expression with named groups to match the items of the structured input text, e.g.
(?<g>[^\[\],]+)
- Preserve language tag/datatype
- Sets the language tag or datatype of the input literal on the output literals
- Group name
- Name of the regular expression group to store as a new literal
- Group predicate
- IRI of the predicate linking to the output literals created from this regular expression group
Characteristics
- ID
- t-valueparser
- Type
- transformer
- Inputs
- RDF single graph
- Outputs
- RDF single graph
- Look in pipeline
- Sample pipeline
- available
The Value parser component parses structured text and lists possibly present in literals, creating multiple literals instead. The Java regular expressions are used. You can test your regular expressions here.