3

我有一个跨越多行的字符串。换行符是 LF,就像在这个“hello world”示例中,在“hello”和“world”之间有一个换行符:

some_bytes = [104  101  108  108  111 10 119  111  114  108  100];
some_string = char(some_bytes);

disp(some_string)

我想匹配序列“wo”,但前提是它出现在一行的开头。但是使用正则表达式

idx = regexpi(some_string,'^wo');

返回一个空数组。我究竟做错了什么?

4

1 回答 1

9

^,默认情况下,仅匹配字符串的开头。您可以使用(?m)搜索标志激活多行模式:

idx = regexpi(some_string,'(?m)^wo');

或者,您可以提供选项'lineanchors'. 请参阅文档

于 2013-08-19T17:14:59.820 回答