代码搜索:SubString

找到约 5,777 项符合「SubString」的源代码

代码结果 5,777
www.eeworm.com/read/127767/14336906

txt e073. getting a substring from a string.txt

int start = 1; int end = 4; String substr = "aString".substring(start, end); // Str
www.eeworm.com/read/127767/14337296

txt e072. determining if a string contains a substring.txt

See also e423 Quintessential Regular Expression Search Program. String string = "Madam, I am Adam"; // Starts with boolean b = string.startsWith("Mad"); // true // E
www.eeworm.com/read/177199/9465649

java e4_14.java

// Fig. 11.6: SubString.java // String class substring methods. import javax.swing.*; //SubString public class E4_14 { public static void main( String args[] ) { String letters =
www.eeworm.com/read/318168/13484508

def mysql.def

; PSPad clip definition file for MySQL ; ; author: ing. Jan Fiala pspad@wo.cz ; last revision: 30.8.2003 ; [IFNULL | if expr1 is not NULL, IFNULL() returns expr1, else it returns expr2] IFNULL(
www.eeworm.com/read/175308/9552704

ex-10-02

// Example 10-02: Using the Substring() method namespace Programming_CSharp { using System; using System.Text; public class StringTester { static void Main() {
www.eeworm.com/read/171936/6965139

java extractsubstring.java

public class ExtractSubstring { public static void main(String[] args) { String text = "To be or not to be"; // String to be segmented int count = 0;
www.eeworm.com/read/143286/5758505

java stringexam.java

public class StringExam { public static void main(String args[]) { String s1=new String("This is an demo of the String method."); char c[]={'a','b','c'}; String s
www.eeworm.com/read/110455/6164268

java stringexam.java

public class StringExam { public static void main(String args[]) { String s1=new String("This is an demo of the String method."); char c[]={'a','b','c'}; String s
www.eeworm.com/read/103629/6213561

java substringbuffer.java

class subStringBuffer { public static void main(String[] args) { //创建字符串缓冲区 StringBuffer buf = new StringBuffer("The Java Class Libraries"); //调用subString方法 System.out.print
www.eeworm.com/read/127943/14326492

java substringbuffer.java

class subStringBuffer { public static void main(String[] args) { //创建字符串缓冲区 StringBuffer buf = new StringBuffer("The Java Class Libraries"); //调用subString方法 System.out.print