找回密码
 立即注册
软件设计/软件工程 2022-05-06 221 0star收藏 版权: . 保留作者信息 . 禁止商业使用 . 禁止修改作品
问题
我需要通过 JS 替换文件中的版本号,我不能只针对我需要的特定部分。我已将文件的内容读入一个变量,并将用修改后的内容覆盖整个文件。该文件如下所示(标准 wordpress style.css):
  1. /******************************************************************
  2. Theme Name: Starter Theme
  3. Theme URI:
  4. Description: Custom Wordpress starter theme
  5. Author:
  6. Author URI:
  7. Version: 1.0.0
  8. Tags: fluid-layout, responsive-layout, translation-ready

  9. License: WTFPL
  10. License URI:
  11. ------------------------------------------------------------------*/

  12. .sticky {}          /* DO NOT EDIT THIS */
  13. .gallery-caption {} /* THESE ARE USELESS */
  14. .bypostauthor {}    /* THEY ARE ONLY TO KEEP THEME CHECK HAPPY */
复制代码

问题是这个版本:1.0.0

有一些细微差别似乎使这变得困难。我只需要更改第三个数字 (0),因为前两个数字 (1.0) 保留用于手动编辑,需要保持原样(所以我不能只替换整个字符串或行)。我一直试图通过子字符串和/或正则表达式仅提取最后一个数字,但似乎找不到正确的方法(因为它周围的内容不是静态的,加上版本字符串结束带有换行符)。任何帮助将不胜感激。

回答
  1. let newVersion = 3;
  2. content = content.replace(/^Version: \d+\.\d+\.\d+$/mg, function(match, index) {
  3.     return match.replace(/\.\d+$/, '.' + newVersion);
  4. });
复制代码






上一篇:日期和时间选择器对话框
下一篇:Spring REST有多个@RequestBody 参数