Home:ALL Converter>How to find word in string using regular expression

How to find word in string using regular expression

Ask Time:2015-08-15T18:46:01         Author:Rakesh

Json Formatter

How to find word in string using regular expression regardless of case sensitivity ?

Exmaple:

  1. A1234_front123 in this need to find _front word
  2. a1235Front1234yy in this I need to find front

I need to design generic regular expression which can find any kind of words in given string

Author:Rakesh,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/32023954/how-to-find-word-in-string-using-regular-expression
m.cekiera :

If front could be another word, this should try with such combination:\n\n(?<=[0-9])[A-Za-z_]+(?=[0-9_])\n\n\nDEMO\n\nit will work without case insensitive mode i",
2015-08-15T10:50:52
yy