You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Please keep me in your contacts, I want to add this in my features for later (30-60 days) and I do have some questions regarding other forms of payment too. Thanks!
Question
mytuo
Hi guys,
I have a code snippet here:
String str = msgCont.toString();
String[] strs = str.split("\n");
if (strs[2].startsWith("partofthemessage") && strs[2].contains("x")) {
Main.handleDonation("y", strs[2].split("\\)")[0].split("\\(")[1], str.split("xx: ")[1].substring(0, 17), (int)Double.parseDouble(strs[2].substring(57, strs[2].indexOf(" x"))));
");
Will someone care to explain if :
String[] strs = str.split("\n");
if (strs[2]
means the second string of the msg content?
Thanks!
Edited by mytuo11 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.