سؤال

I need to extract file name of an image from one html string using Idoc Script regex functions.

Input string:

"<img src="/cs/content./file_name.png" alt="" />"

Output need to be:

"file_name"

Can you help me?

هل كانت مفيدة؟

المحلول

Try this one. The first capturing group should contain the result:

<img\s+src\s*=\s*"[^"]*\/([^"]*)\.[^"]*"[^\/]*\/>
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top