Code Monkey home page Code Monkey logo

Comments (4)

igordejanovic avatar igordejanovic commented on May 19, 2024

textX uses Python re module for regex matches. Whatever you can match using re module you can use in textX between slashes /..../.

Assuming you are trying to parse a file with multiple records like the one you provided you could do something like this:

# -*- coding: utf-8 -*-
from textx import metamodel_from_str

grammar = '''
Model: records*=Record;
Record: num=/\d+-\d+/ name=/\w+\s+\w+/;
'''
mm = metamodel_from_str(grammar)

input = '''
2785-599 São Domingo
2785-599 São Domingo
'''

model = mm.model_from_str(input)
print(model.records)
print(model.records[0].name)
print(model.records[0].num)

Note that input text should be interpreted as unicode. textX accepts unicode only. The example above is for Python 3.

from textx.

aalsinat avatar aalsinat commented on May 19, 2024

First of all, thanks for your quick response! I forgot to tell you that I am using Python 2.7. With this version, using:

  • re.U
  • re.UNICODE

makes the \w sequence dependent on Unicode

from textx.

igordejanovic avatar igordejanovic commented on May 19, 2024

For Python 2 you can do this:

# -*- coding: utf-8 -*-
from textx import metamodel_from_str

grammar = '''
Model: records*=Record;
Record: num=/\d+-\d+/ name=/(?u)\w+\s+\w+/;
'''
mm = metamodel_from_str(grammar)

input = u'''
2785-599 São Domingo
2785-599 São Domingo
'''

model = mm.model_from_str(input)
print(model.records[0].name)
print(model.records[0].num)

Notice (?u) at the beginning of name regex match. This turns on the re.UNICODE flag for that match.
There is also u at the beginning of input unicode string.

There was a slight problem with printing exceptions on syntax errors with unicode chars in Python 2. It should be fixed now on the master branch so use that version.

from textx.

aalsinat avatar aalsinat commented on May 19, 2024

Great! Great job! Thank you so much for your help!

from textx.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.