我正在使用LUA从长字符串中提取值。
String(shorted)看起来像:
local input = "...</anno:rotation<anno:contentY>40.900000000000006</anno:contentY<..."
我正在寻找最快/最简单的方法来提取<anno:contentY>
和</anno:contentY<
之间的值。在这个例子中'40 .900000000000006'。
有没有更好的方法然后使用string.find
获取开始和结束位置然后使用string.split
?