我有一个跨越多行的字符串。换行符是 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');
返回一个空数组。我究竟做错了什么?