Home | History | Annotate | Download | only in src

Lines Matching full:basestr

32         String baseStr = "*** This is a very nice string!!!";
36 testStr = baseStr.substring(4, baseStr.length() - 3);
64 String baseStr = "The quick brown fox jumps over the lazy dog!";
67 subStr = baseStr.substring(5, baseStr.length() - 4);
71 baseStr.indexOf('T') + ":" +
74 baseStr.indexOf('!') + ":" +
77 baseStr.indexOf('x') + ":" +
81 baseStr.indexOf('x', 17) + ":" +
82 baseStr.indexOf('x', 18) + ":" +
83 baseStr.indexOf('x', 19) + ":" +
87 baseStr.indexOf(0x12341234));