kokolegorille
Hello everyone,
I am having some trouble understanding leex behaviour. To give some context, I would like to create a parser for pgn files.
Here is some code to explain my problem.
I created the lexer file pgn_lexer.xrl with
% -- Definitions.
Definitions.
TAG = (\[[^\]]*\])+
COMMENT = ({[^}]*})+
WHITESPACE = [\s\t\n\r]
Rules.
{TAG} : {token, {tag, TokenLine, TokenChars}}.
{COMMENT} : {token, {comment, TokenLine, TokenChars}}.
{WHITESPACE}+ : skip_token.
Erlang code.
The important rule is for TAG
( \[ [^\]] * \] )+
I cannot understand why
iex> :pgn_lexer.string '[Tag1 "Value1"] [Tag2 "Value2"]{comment}'
{:ok,
[
{:tag, 1, '[Tag1 "Value1"]'},
{:tag, 2, '[Tag2 "Value2"]'},
{:comment, 2, '{comment}'}
], 2}
# This works has expected, it detects 2 tags
iex> :pgn_lexer.string '[Tag1 "Value1"][Tag2 "Value2"]{comment}'
{:ok, [{:tag, 1, '[Tag1 "Value1"][Tag2 "Value2"]'}, {:comment, 1, '{comment}'}],
1}
# This does not work, tag1 and tag2 are merged
Why do the tags need to be separated by a space?
Thanks for enlightments.
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #security










Showing Posts 5 to 1- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
kip
Arrrggghhhhh sorry for my misleading reply.
kokolegorille
That did the trick, thank You very much.
Here is the modified version…
And as mentionned, the short version works as well
NobbZ
Yes, they are greedy, but thats not the cause here.
TAGis defined as(\[[^\]]*\])+and thus we demand at least one but allow many repitions of square-bracket-pairs-with-stuff-inbetween and consolidate them into one token.If the second example is expected to spit out 2
tagtokens, thenTAGshould be just(\[[^\]]*\])(without the+), now we should even be able to remove the grouping parens without changing anything.kokolegorille
Thank You for the answer, now I know why, and I know why I am spending hours too
kip
The reason is that regexes in Leex are greedy. Your regex in this case matches the longest string possible. Here’s a example using your regex and data in IEx:
In general I find these issues become prevalent when you’re using Leex to parse instead of just tokenize. (I know this because I’ve spent hours on similar cases myself). My learning is to use Leex to tokenise and Yecc to parse.
Or look at nimble_parsec or ex_spirit