Method getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
Return type: void
Member of: java.lang.String
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 str.getChars(0, len, chars, 0);
2 desc.getChars(0, 251, chDesc, 0);
3 monthnames[cal.get(Calendar.MONTH)].getChars(0,3,datecache,3);
4 string.getChars(0, string.length(), aString, 0);
5 s.getChars(0, len, chars, 0);
6 s.getChars(0, length, chars, 0);
7 word.getChars(0,wordLength,characters,0);
8 str.getChars(0, len, chars, 0);
9 chars.getChars(0, length, m_charsBuff, 0);
10 string.getChars(0, l, dst, 0);
11 value.getChars(0, length, _buffer, 0);
12 s.getChars( 0, len, _cbuf, 0 );
13 text.getChars(0, text.length(), chars, 0);
14 delim.getChars (0, length, ch, 0);
15 message.getChars(0, message.length(), content, 0);
16 passphrase.getChars(0,passphrase.length(),passchars,0);
17 dirPath.getChars(0,i,buf,0);
18 str.getChars(0, len, value, count);
19 word.getChars(0,word.length(),full_buff,WINDOW_SIZE);
20 text.getChars(start,len,mychars,0); //(srcBegin,srcEnd,dst[],dstBegin)
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.