5

我有一些 mathjax 格式的 HTML 文本:

text = "an inline \\( f(x) = \frac{a}{b} \\) equation, a display equation \\[ F = m a \\] \n and another inline \\(y = x\\)"

(注意:方程式由单斜杠分隔,例如\(not \\(,额外\的只是转义第一个用于 ruby​​ 文本)。

我想获得将其替换为的输出,例如由 latex.codecogs 创建的图像,例如

desired_output = "an inline <img src="http://latex.codecogs.com/png.latex?f(x) = \frac{a}{b}\inline"/> equation, a display equation <img src="http://latex.codecogs.com/png.latex?F = m a"/> \n and another inline <img src="http://latex.codecogs.com/png.latex?y = x\inline"/> "

使用红宝石。我尝试:

desired = text.gsub("(\\[)(.*?)(\\])", "<img src=\"http://latex.codecogs.com/png.latex?\2\" />") 
desired = desired.gsub("(\\()(.*?)(\\))", "<img src=\"http://latex.codecogs.com/png.latex?\2\\inline\")
desired

但这不成功,只返回原始输入。我错过了什么?如何适当地构建此查询?

4

2 回答 2

1

尝试:

desired = text.gsub(/\\\[\s*(.*?)\s*\\\]/, "<img src=\"http://latex.codecogs.com/png.latex?\\1\"/>") 
desired = desired.gsub(/\\\(\s*(.*?)\s*\\\)/, "<img src=\"http://latex.codecogs.com/png.latex?\\1\inline\"/>")
desired

必须发生的重要变化:

  • 第一个参数gsub应该是一个正则表达式(正如安东尼提到的)
  • 如果第二个参数是双引号字符串,则后面的引用必须像\\2(而不是 just \2)(参见rdoc
  • 第一个参数没有转义\

还有一些其他小的格式化内容(空格等)。

于 2012-10-31T20:10:46.687 回答
0

不确定您的正则表达式是否正确 - 但在 Ruby 中,正则表达式由 分隔//,请尝试如下:

desired = text.gsub(/(\\[)(.*?)(\\])/, "<img src=\"http://latex.codecogs.com/png.latex?\2\" />")

您正在尝试进行字符串替换,当然 gsub 没有找到包含的字符串(\\[)(.*?)(\\])

于 2012-10-31T19:47:13.870 回答