Code Monkey home page Code Monkey logo

Comments (8)

DuffsDevice avatar DuffsDevice commented on July 26, 2024 1

Hi Abdullah,

thank you for your messages. Could you checkout the newest commit and see if it did fix your issues?
The problem was: iterators used to point to byte indices and not codepoint indices: therefore str.end() may not point to the end of the resulting string at the end of the remove_if(as it might as well be shorter or longer, i.e. contain less/more bytes).

I duplicated the set of iterators for raw (byte-based) and non-raw (codepoint-based) versions. This should fix your issues now :)

Please let me know!

Jakob

from tiny-utf8.

DuffsDevice avatar DuffsDevice commented on July 26, 2024 1

I'll close this for now, please feel free to re-open, if the issue should still persist 😃

from tiny-utf8.

DuffsDevice avatar DuffsDevice commented on July 26, 2024 1

Oh, dang it, you probably wrote me the second before I closed the ticket 😄
I will have a look at it! Thanks for your answer!

from tiny-utf8.

DuffsDevice avatar DuffsDevice commented on July 26, 2024 1

I fixed it again in the latest commit. Thank you for bearing with me ;)
Please let me know, if it works now.

from tiny-utf8.

Abdullah-AlAttar avatar Abdullah-AlAttar commented on July 26, 2024 1

Works as expected, thanks for the quick response. and this awesome library.

from tiny-utf8.

Abdullah-AlAttar avatar Abdullah-AlAttar commented on July 26, 2024

Thanks for the fix, but there are still some issues.
it is repeating some characters

#include <tinyutf8/tinyutf8.h>
#include <algorithm>
#include <iostream>

int main()
{
    tiny_utf8::string str = "!مرحبا !! بكم!";

    std::cout << str << std::endl;

    str.erase(std::remove_if(str.begin(), str.end(), [](char32_t c) { return c == U'!'; }),
              str.end());
    std::cout << str << std::endl;
    // output is : ممرحبا  بببكم!
    // should be مرحبا بكم
}

Also here it goes in an infinite loop.

#include <tinyutf8/tinyutf8.h>

#include <algorithm>
#include <iostream>


int main()
{
    tiny_utf8::string str = "مرحبا !! بكم!";

    std::cout << str << std::endl;

    str.erase(std::remove_if(str.begin(), str.end(), [](char32_t c) { return c == U'!'; }),
              str.end());
              
    std::cout << str << std::endl;

}

from tiny-utf8.

Abdullah-AlAttar avatar Abdullah-AlAttar commented on July 26, 2024

Hi Jakob

just checked after the changes
for the first code snippet. the there still some duplicate characters and it is not removing the last occurrence of '!'

    tiny_utf8::string str = "!!مرحبا !! بكم!";
    std::cout << str << std::endl;

    str.erase(std::remove_if(str.begin(), str.end(), [](char32_t c) { return c == U'!'; }),
              str.end());
    std::cout << str << std::endl;
   // مرحبا  بكمم!

For the second one. it is not hanging any more. but there are still issues with the output. (getting this weird symbol �) and not removing the last occurrence as well

#include <tinyutf8/tinyutf8.h>

#include <algorithm>
#include <iostream>


int main()
{
    tiny_utf8::string str = "مرحبا !! بكم!";

    std::cout << str << std::endl;

    str.erase(std::remove_if(str.begin(), str.end(), [](char32_t c) { return c == U'!'; }),
              str.end());
              
    std::cout << str << std::endl;
    // مرحبا  بكم�!
}

from tiny-utf8.

DuffsDevice avatar DuffsDevice commented on July 26, 2024

NICE, happy that it works now! 💪
Thanks for your feedback, I appreciate it!

from tiny-utf8.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.