我正在尝试使用 JavaScript 正则表达式从文件中提取子字符串。这是文件中的一个片段:

DATE:20091201T220000
SUMMARY:Dad's birthday

我要提取的字段是“摘要”。这是方法:
extractSummary : function(iCalContent) {
  /*
  input : iCal file content
  return : Event summary
  */
  var arr = iCalContent.match(/^SUMMARY\:(.)*$/g);
  return(arr);
}

最佳答案

您需要使用 m flag :



还将 * 放在正确的位置:

"DATE:20091201T220000\r\nSUMMARY:Dad's birthday".match(/^SUMMARY\:(.*)$/gm);
//------------------------------------------------------------------^    ^
//-----------------------------------------------------------------------|

关于javascript - 如何使用 JavaScript 正则表达式提取字符串?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1707299/

10-13 00:08