Ask the Community
Ask any professional question and get answers from other specialists.
I want to write JavaScript regular expression to remove all URLs from given text I use this expression (?:(?:https?|ftp|file)://|www\.|ftp\.)[a-zA-Z0-9\-\.]+\.[a-zA-Z]{2 ... See More
In most cases we use the protocol name (http, ftp, https, ... ) or www to identify the url from the string, but in this case the only way to make sure if this valid url o ... See More
Thank you Hazem, But this solution is limit by list of generic top-level domains (gTLDs) and country code top-level domains (ccTLDs) gTLDs and ccTLDs list may upda ... See More