gpt4 book ai didi

java - Mathjax 字符串的正则表达式

转载 作者:行者123 更新时间:2023-11-30 02:42:49 26 4
gpt4 key购买 nike

任何机构都会给出如何使用正则表达式删除字符串中的 mathjax 的解决方案。例如我的输入字符串是

“哪句话解释了为什么$!\overline{AB}!$的斜率等于$!\overline{BC}!$的斜率? ”,我期待的是“哪句话解释了为什么 的斜率等于 的斜率?”

最佳答案

你可以试试这个:

\$!.*?!\$

Explanation

示例代码

    final String regex = "\\$!.*?!\\$";
final String string = "Which sentence explains why the slope of $!\\overline{AB}!$ is equal to the slope of $!\\overline{BC}!$?";
final Pattern pattern = Pattern.compile(regex);
final Matcher matcher = pattern.matcher(string);
final String result = matcher.replaceAll("");
System.out.println(result);

关于java - Mathjax 字符串的正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41135103/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com