Re: [codenameone-discussions] Strip html from string

2019-03-13 Thread shop . service . assistant
Perfect. Thank You for all your help! Regards On Tuesday, March 12, 2019 at 12:17:03 PM UTC-4, Steve Hannah wrote: > > Use the RE class for regular expressions. > > https://www.codenameone.com/javadoc/com/codename1/util/regex/RE.html#subst-java.lang.String-java.lang.String- > > On Tue, Mar 12,

Re: [codenameone-discussions] Strip html from string

2019-03-12 Thread Steve Hannah
Use the RE class for regular expressions. https://www.codenameone.com/javadoc/com/codename1/util/regex/RE.html#subst-java.lang.String-java.lang.String- On Tue, Mar 12, 2019 at 7:30 AM wrote: > If you are experiencing an issue please mention the full platform your > issue applies to: > IDE:

[codenameone-discussions] Strip html from string

2019-03-12 Thread shop . service . assistant
If you are experiencing an issue please mention the full platform your issue applies to: IDE: NetBeans/Eclipse/IDEA NetBeans 8.2 Desktop OS Windows 10 Pro Simulator Latest Device PC, Android, IOS I am using StringUtil.replaceAll(html, "\\<.*?>", ""); to strip out html However it is not working.