Convert hashtag to link

hi guys

i want convert hashtag to in app links, for sample if user click this hashtag (#black_cats) go to products page and filter by black cats
notice: this tags created by user on chat room and i want detect hashtag on text !!

Can anyone help me? i want convert hashtag to link

It’s a complex thing you want done there. Can’t give you exact help. You need to expand your question by providing some relevant info (i.e. code).

Here are some things you can do:

  1. Check the text for the presence of hashtags using Regular Expressions (RegExp).
  2. If the presence of a hashtag pattern is found, you can then manipulate that hashtag (wrap it in <a> tags and handle their click event (or use href if you’re using Deep Linking).