Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用正则表达式获取字符串的最后 8 个字符。这里有些例子:
psG8FKzmVz -> G8FKzmVz es5xd2bC47 -> 5xd2bC47 ese2SapMT3 -> e2SapMT3
请帮助解决这个问题。
不知道为什么要对这样的事情使用正则表达式,但这应该可以:
(.{0,8})$
可以使用字符串函数,看起来很简单的字符串操作。使用 substr
如果是复杂的字符串提取,您可以选择正则表达式