79703074

Date: 2025-07-16 07:44:30
Score: 1
Natty:
Report link

Use string.match with a pattern anchored to the end of the string ($)

s = "foo> <bar ... <baz.ind>"
print(s:match("<(.*)>$"))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Shivam Bhosle