完成后
var myVar = $('.selector-options.my-wrapper.selected').find('.my_anchor').attr('title');
我需要知道有多少行(通过相应的分割字符串的组件数量)
String delims = "[\n]";
String[] tokens = text.split(delims); //text is composed of one single word per line
有没有这样做的方法?
答案 0 :(得分:-1)
使用length
字段:
int k=tokens.length;
由于tokens
是一个数组,您需要使用length
字段,但length()
方法需要使用字符串。