Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Working with strings: Java

Options
  • 18-01-2007 12:29am
    #1
    Registered Users Posts: 279 ✭✭


    Hey guys, just thought there'd be some Java gurus in here who can help me with this problem.
    I have a string and I am replacing every space with a '+' but does anyone know how I can detect a carriage return and line feed (CRLF) within the string so I can replace this with a '+' much like the spaces?
    Here's the code I'm using to replace every space with a +.

    for (int x=0; outgoingSmsMsg.length(); x++ {
    if (outgoingSmsMsg.charAt(x) == ' ' {
    outgoingSmsMsg = outgoingSmsMsg.replace(' ', '+');
    }
    }

    Regards,
    Digi.


Comments

  • Closed Accounts Posts: 362 ✭✭information


    if(outgoingSmsMsg.contains("\n"))
        outgoingSmsMsg = outgoingSmsMsg.replace('\n','+');
    if(outgoingSmsMsg.contains(" "))
        outgoingSmsMsg = outgoingSmsMsg.replace(' ','+');
    if(outgoingSmsMsg.contains("\r"))
        outgoingSmsMsg = outgoingSmsMsg.replace('\r','+');
    


Advertisement