标签: regex
我想捕捉除字符串中第一个字母以外的所有字母 示例字符串:$.getJSON('cake.json', function(data) { process(data); }); function process(data) { // do something with data }
$.getJSON('cake.json', function(data) { process(data); }); function process(data) { // do something with data }
我知道抓住第一个字母是The cat in the hat.所以我想要/[^]/
The cat in the hat.
/[^]/
答案 0 :(得分:4)
使用零宽度正向后视:
audio_prop={'BitsPerSample',16,'Artist','artist rt','Title','title section rt','Comment','Comments section rt'}; audiowrite('/tmp/test.wav',[sig_full_L(:) -1*sig_full_R(:)],44100,audio_prop{:})
Demo
答案 1 :(得分:1)
您可以使用具有基本正则表达式的捕获组。
^.(.*)
捕获组存储匹配结果,忽略字符串中的第一个字符。