What is the rotation operator in Lua templates?

|Used in regular expression for alternation. What is the corresponding character in Lua patterns?

+3
source share
2 answers

First, note that Lua patterns are not regular expressions; they are their own simpler matching language (with various advantages and disadvantages).

In the spec that I linked above, and for this answer , there is no strip operator in the Lua template. To get this functionality, you need to use a more powerful Lua construct (like LPEG or Lua Regex Library ).

+12

: :

|

:

[] [] [] [] []

: . !

0

All Articles