Programming: compile a function to intercept a string. The input is a string and the number of characters, and the output is a byte string.

Source: Internet
Author: User
Class SplitString
{
String SplitStr;
Int SplitByte;
Public SplitString (String str, int bytes)
{
SplitStr = str;
SplitByte = bytes;
System. out. println ("The String is: '" + SplitStr + "'; SplitBytes =" + SplitByte );
}
Public void SplitIt ()
{
Int loopCount;

LoopCount = (SplitStr. length () % SplitByte = 0 )? (SplitStr. length ()/SplitByte) :( SplitStr. length ()/SplitByte + 1 );
System. out. println ("Will Split into" + loopCount );
For (int I = 1; I <= loopCount; I ++)
{
If (I = loopCount ){

System. out. println (SplitStr. substring (I-1) * SplitByte, SplitStr. length ()));
} Else {

System. out. println (SplitStr. substring (I-1) * SplitByte, (I * SplitByte )));
}
}
}
Public static void main (String [] args)
{
SplitString ss = new SplitString ("dd in test dsaf male 3443n 43 Chinese people 0 ewldfls = 103", 5 );
Ss. SplitIt ();
}
}

Aaron @ aaron-ubuntu :~ /Study $ javac SplitString. java
Aaron @ aaron-ubuntu :~ /Study $ java SplitString
The String is: 'dd in The test, dsaf, male, 3443n, Chinese, 43 Chinese, 0 ewldfls = 1000'; SplitBytes = 5
Will Split into 8
Test
Dd ds
Af male
3443n
43 centers in China
0ew
Ldfls
= 103

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.