D语言索引方法

import std.stdio;
import std.string;

void main() { 
   char[] s1 = "hello World ".dup; 

   writeln("indexOf of llo in hello is ",std.string.indexOf(s1,"llo")); 
   writeln(s1); 
   writeln("lastIndexOf of O in hello is " ,std.string.lastIndexOf(s1,"O",CaseSensitive.no));
}

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/265990.html

(0)
上一篇 2022年6月7日
下一篇 2022年6月7日

相关推荐

发表回复

登录后才能评论