How can I replace this "a b" by "a b" in j2me?
the replace() method doesn't accept Strings, but only chars. And since a double space contains two chars, I think i have a small problem.
How can I replace this "a b" by "a b" in j2me?
the replace() method doesn't accept Strings, but only chars. And since a double space contains two chars, I think i have a small problem.
Here's one function you might use:
public static String replace(String _text, String _searchStr, String _replacementStr) {
    // String buffer to store str
    StringBuffer sb = new StringBuffer();
    // Search for search
    int searchStringPos = _text.indexOf(_searchStr);
    int startPos = 0;
    int searchStringLength = _searchStr.length();
    // Iterate to add string
    while (searchStringPos != -1) {
        sb.append(_text.substring(startPos, searchStringPos)).append(_replacementStr);
        startPos = searchStringPos + searchStringLength;
        searchStringPos = _text.indexOf(_searchStr, startPos);
    }
    // Create string
    sb.append(_text.substring(startPos,_text.length()));
    return sb.toString();
} 
What do you think of this one? I tried one myself.
private String replace(String needle, String replacement, String haystack) {
    String result = "";
    int index = haystack.indexOf(needle);
    if(index==0) {
        result = replacement+haystack.substring(needle.length());
        return replace(needle, replacement, result);
    }else if(index>0) {
        result = haystack.substring(0,index)+ replacement +haystack.substring(index+needle.length());
        return replace(needle, replacement, result);
    }else {
        return haystack;
    }
}