can someone help me with this please:
s_test = \"this is a test string this is a test string \"
function String.Wholefind(Search_string, Word)
_, F_result = st
Your pattern doesn't match because you are trying to do the impossible.
After including your variable value, the pattern looks like this: %f[%a]123test%f[%A]
. Which means:
Your pattern (as written) will not work for any word that starts or ends with a non-letter.
If you need to search for fragments that include letters and numbers, then your pattern needs to be changed to something like '%f[%S]'..Word..'%f[%s]'
.