If I have a string position that I derived with strpos(), how would I skip to that position? I am using a function that needs to start at the position, or at the start of the next line.
How would I do this? Speed is a factor.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
you can skip to any character in a string with
but I’m not sure what you mean by skip to position?
@strap is correct if skip to position means split string at position.