nemethv Member Licensed User Longtime User May 26, 2020 #1 Hi, I have a string (URL, but I can't change the encoding etc, it's as-is) that may look like: 1) https://wikitravel.org/en/Pomáz 2) https://wikitravel.org/ja/ブラチスラバ how can I make such into: 1) https://wikitravel.org/en/Pomáz 2) https://wikitravel.org/ja/ブラチスラバ Thank you
Hi, I have a string (URL, but I can't change the encoding etc, it's as-is) that may look like: 1) https://wikitravel.org/en/Pomáz 2) https://wikitravel.org/ja/ブラチスラバ how can I make such into: 1) https://wikitravel.org/en/Pomáz 2) https://wikitravel.org/ja/ブラチスラバ Thank you
Erel B4X founder Staff member Licensed User Longtime User May 26, 2020 #2 There is no difference in the links. Maybe the forum script changed something. I guess that you are looking for StringUtils.DecodeURL. Upvote 0
There is no difference in the links. Maybe the forum script changed something. I guess that you are looking for StringUtils.DecodeURL.
nemethv Member Licensed User Longtime User May 26, 2020 #3 Erel said: There is no difference in the links. Maybe the forum script changed something. I guess that you are looking for StringUtils.DecodeURL. Click to expand... Ah, indeed it has, yes. Initially "Pomáz" was But yes, StringUtils.DecodeURL worked, thank you. Upvote 0
Erel said: There is no difference in the links. Maybe the forum script changed something. I guess that you are looking for StringUtils.DecodeURL. Click to expand... Ah, indeed it has, yes. Initially "Pomáz" was But yes, StringUtils.DecodeURL worked, thank you.