roganjoshua
I am trying to process a text file like a kind of plain text guitar tab with etc. a bit like the Ultimate Guitar Tab site.
Each line will either blanks or chords or lyrics or something like that.
defmodule TextFileProcessor do
def process_file(file_path) do
File.stream!(file_path)
|> Enum.each(&process_line/1)
end
defp process_line(line) when line =~ ~r/^LYRICS:/ do
# Process lines starting with "LYRICS:"
IO.puts("Processing lyrics line: #{line}")
end
defp process_line(line) when line =~ ~r/^CHORDS:/ do
# Process lines starting with "CHORDS:"
IO.puts("Processing chords line: #{line}")
end
defp process_line(line) do
# Default processing for other lines
IO.puts("Processing line: #{line}")
end
end
I can’t use =~ in a guard or other Kernel functions is there a better way to do this?
I hope there is enough in here.
TIA
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
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
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
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
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
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
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
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
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #elixirconf-eu
- #metaprogramming
- #hex










Showing Posts 1 to 9- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
Marcus
You can do this with pattern matching in the function args.
roganjoshua
Thank you Marcus, that is very nice, is there any more sophisticated mechanism than <> like regular expressions for example
christhekeele
Not in guards/function heads. You’ll need to use a single function with something like a
condinside.LostKobrakai
There are constraints around guards, which prevent many higher level/more complex apis from being usable:
derpycoder
Here’s my take on it:
or if you don’t care about specifics in the first iteration, you can do:
Both the pipelines, spit out an organized map, which you can then process.
If you don’t want that map, you can directly process it within the pipeline above.
P.S.
Personally, I prefer this way because it makes it composable and allows me to use
dbg()to see if anything in the pipeline is not working as expected.roganjoshua
Thank you all so much for the help
The actual song will likely be in this format plus others like [Chords} to define the kinds of chords to use and other metadata
It matters where along the line the chord def, the text will come from non-tech people so I am expecting a fair amount of handling, things like duplicate lines or mistakes etc.
The idea is to get a nice html render out of it
roganjoshua
If anyone is interested I think I kind of got to where I wanted like this:
Not sure this is optimal but I would be interested in any criticism
dimitarvp
I am pretty late here but I’d advise against regexes unless they are very straightforward. Haven’t looked into yours in details (and length is not always an indicator of a complex regex) but I’d probably reach for
nimble_parsecand give it a go for a day or two.That being said, being productive in that particular library is a skill in and of itself so if you are pressed for time you should probably keep your regex solution but also add edge case unit tests.
roganjoshua
Thanks Dimitar
I think the likely size of the files is going to be pretty small, in the order 100 lines so hopefully regex will do for now.
I will see how I go with it before attempting nimble_parsec.
I am very much at the beginning of my elixir journey.