如何格式化输入“123456789”使用正则表达式发送至fax/123456789@faxabc.com?

发布于 2024-11-05 10:22:29 字数 526 浏览 0 评论 0 原文

用户输入1234567890,然后需要将其格式化为fax/[电子邮件受保护]。尝试了以下正则表达式但不起作用:

fax/{\d+}/@fax.com
fax\//{\d+}/@faxabc.com
[fax\//{\d+}/@faxabc.com]

最接近的一个是 fax/{\d+}/@fax.com,将得到 [电子邮件受保护]。但是,传真一词后面需要“/”。

User inputs 1234567890 and then need to format that to fax/[email protected]. Tried the following regular expression but not working:

fax/{\d+}/@fax.com
fax\//{\d+}/@faxabc.com
[fax\//{\d+}/@faxabc.com]

The closest one is fax/{\d+}/@fax.com, will get [email protected]. However, need the "/" after the word fax.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

故人爱我别走 2024-11-12 10:22:29

也许您正在尝试在字符串中匹配它:

function formatFaxNo(s) {
  var re = /(\D)(\d+)(\D)/;
  return s.replace(re, '$1' + 'fax/'+'$2'+'@faxabc.com' + '$3');
}

// Here is a fax/[email protected] number.
formatFaxNo('Here is a 123456789 number.'); 

// Fax to here: fax/[email protected].
formatFaxNo('Fax to here: 123456789.');     

Perhaps you are trying to match it in a string so:

function formatFaxNo(s) {
  var re = /(\D)(\d+)(\D)/;
  return s.replace(re, '$1' + 'fax/'+'$2'+'@faxabc.com' + '$3');
}

// Here is a fax/[email protected] number.
formatFaxNo('Here is a 123456789 number.'); 

// Fax to here: fax/[email protected].
formatFaxNo('Fax to here: 123456789.');     
扭转时空 2024-11-12 10:22:29

这称为字符串操作/连接,而不是正则表达式:

    var input = 123456789; //or whatever user inputs
    var output = "fax/" + input + "@abc.com" ;

这有什么问题吗?

It's called string manipulation/concatenation, not regex:

    var input = 123456789; //or whatever user inputs
    var output = "fax/" + input + "@abc.com" ;

Anything wrong with that?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文