我正在使用莫尔斯代码,我想知道是否可以使用jQuery用正斜杠替换空格?
由于
答案 0 :(得分:2)
jQuery完全是错误的工具。 jQuery是一个基于JavaScript的包,用于操作DOM。您需要字符串操作,这只是JavaScript中的String原型的一部分:
#include "file1.hpp"
namespace foo
{
template<typename T>
void myfun(T a, T b)
{
a += b;
swap(a, b); //does it imply foo::swap, because the function
//is declared in the foo namespace??
}
}
对于这种情况,我们只需使用一对一替换(字符空格替换为字符斜杠)。更复杂的替换可以使用正则表达式或正则表达式,这也不是jQuery。
答案 1 :(得分:0)
如果我正确地解释了你的问题,你想知道如何用另一个字符串(正斜杠)替换字符串的部分(在你的情况下,空格)?在这种情况下,您可能需要尝试String.replace()。
以下是一些示例:How to replace all occurrences of a string in JavaScript?