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
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Working with strings: Java

  • 17-01-2007 11:29pm
    #1
    Registered Users, Registered Users 2 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