سؤال

i have this string

The Walking Dead: Season 1 (DVD) tagged "the walking dead" 61 times

and i need to truncate this string, after this char ")" or delete the word "tagged" and remove all words after this.

Thanks at all.

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

المحلول

Don't know what language you are using, but this should work.

use this regex:

\).*

And replace it with )

نصائح أخرى

(.*)(?:tagged)

The above regex will select everything before tagged.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top