Substring 在C#和JS 里面的区别
在做安利财务支付系统的过程中,学到了一个小的函数在两种语言下的却别
函数 in JS: Substring(Start,Stop);
函数 in C#:Substring(Start,Length);
只有一个参数时,二者效果一样。Substring(Start);
在做安利财务支付系统的过程中,学到了一个小的函数在两种语言下的却别
函数 in JS: Substring(Start,Stop);
函数 in C#:Substring(Start,Length);
只有一个参数时,二者效果一样。Substring(Start);