Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Lua pattern separating issue

I need some help with creating my pattern. I've got the basic parts done, but one issue remains.

Let's say I have a string as follows:

John: I can type in :red:colour! :white:Not in the same :red:wo:green:rd :white:though :(

I have this code setup to separate the colors from the actual value:

line = "John: I can type in :red:colour! :white:Not in the same :red:wo:green:rd :white:though :("

for token in string.gmatch(line, "%s?[(%S)]+[^.]?") do
   for startpos, token2, endpos in string.gmatch(token, "()(%b::)()") do
      print(token2)
      token = string.gsub(token, token2, "")
   end
   print(token)
end

Will output:

John: 
I 
can 
type 
in 
:red:
colour! 
:white:
Not 
in 
the 
same 
:red:
:green:
word 
:white:
though 
:(

When I want it to print out:

John: 
I 
can 
type 
in 
:red:
colour! 
:white:
Not 
in 
the 
same 
:red:
wo
:green:
rd 
:white:
though 
:(

Any help would be greatly appreciated.

like image 542
sgtaziz Avatar asked Mar 25 '26 00:03

sgtaziz


1 Answers

The following code will give your desired output:

for token in line:gmatch( "(%S+)" ) do
  if not token:match( "(:%w-:)([^:]+)" ) then
    print(token)
  else
    for col, w in token:gmatch( "(:%w-:)([^:]+)" ) do
      print( col )
      print( w )
    end
  end
end

Though, it will fail for a string such as:

in the sa:yellow:me:pink:long-Words!
like image 96
hjpotter92 Avatar answered Mar 26 '26 13:03

hjpotter92



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!