J jchal Active Member Licensed User Longtime User May 13, 2021 #1 i have followed the code from https://www.b4x.com/android/forum/threads/remove-html-formatting-from-a-string.34816/post-203979 i was wandering how can i remove the non-breaking space( ) ?
i have followed the code from https://www.b4x.com/android/forum/threads/remove-html-formatting-from-a-string.34816/post-203979 i was wandering how can i remove the non-breaking space( ) ?
JohnC Expert Licensed User Longtime User May 13, 2021 #2 A search of "replace string" in this forum gave this result: B4A - Core B4X: Dim s As String s = "text with in it" s = s.Replace(" ", "") Upvote 0
A search of "replace string" in this forum gave this result: B4A - Core B4X: Dim s As String s = "text with in it" s = s.Replace(" ", "")
Erel B4X founder Staff member Licensed User Longtime User May 14, 2021 #3 Can you post the html string? Might be better to parse it with MiniHtmlParser. Upvote 0