इस दृष्टिकोण का उपयोग इसे स्वचालित करने के लिए किया जा सकता है (निम्नलिखित अनुकरणीय समाधान अजगर में है, हालांकि स्पष्ट रूप से इसे किसी भी भाषा में पोर्ट किया जा सकता है):
आप व्हॉट्सएप को पहले से ही बंद कर सकते हैं और गैर-व्हाट्सएप पात्रों की स्थिति को बचा सकते हैं ताकि आप बाद में उनका उपयोग निम्नलिखित स्ट्रिंग की तरह मिलान स्ट्रिंग सीमा पदों का पता लगाने के लिए कर सकें:
def regex_search_ignore_space(regex, string):
no_spaces = ''
char_positions = []
for pos, char in enumerate(string):
if re.match(r'\S', char): # upper \S matches non-whitespace chars
no_spaces += char
char_positions.append(pos)
match = re.search(regex, no_spaces)
if not match:
return match
# match.start() and match.end() are indices of start and end
# of the found string in the spaceless string
# (as we have searched in it).
start = char_positions[match.start()] # in the original string
end = char_positions[match.end()] # in the original string
matched_string = string[start:end] # see
# the match WITH spaces is returned.
return matched_string
with_spaces = 'a li on and a cat'
print(regex_search_ignore_space('lion', with_spaces))
# prints 'li on'
यदि आप आगे जाना चाहते हैं तो आप मैच ऑब्जेक्ट का निर्माण कर सकते हैं और इसके बजाय इसे वापस कर सकते हैं, इसलिए इस सहायक का उपयोग अधिक उपयोगी होगा।
और इस फ़ंक्शन के प्रदर्शन को निश्चित रूप से अनुकूलित किया जा सकता है, यह उदाहरण केवल समाधान के लिए रास्ता दिखाने के लिए है।