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.
我(/\;$/, "");最后要删除这个;从一个字符串。但结果与输入相同。
(/\;$/, "");
以下正则表达式应该适合您:
\;(?=[^;]*$)
因此,您的替换代码将变为:
(\;(?=[^;]*$), "");
这是在 RegExr 上工作的正则表达式的示例。