नमस्ते John+Wickberg,
आज, मैंने निम्नलिखित नियमित अभिव्यक्तियों (regular expressions) को 2 बार चलाया: एक बार जब RegEx Pal पूर्ण गति पर चल रहा था और एक बार जब यह धीमा होने लगा।
मेरा अनुभव यह है कि RegEx Pal तब धीमा होने लगता है जब मैं 2-3 पैटर्न चलाता हूँ। जब यह धीमा होने लगता है, तो मैं इसे बंद कर देता हूँ, और फिर यह पूर्ण गति पर लौट आता है।
बंद टैग से पहले स्थान (space) हटाएं
( )(\[a-z0-9*]+*)#\2
15.74 sec/36.63 sec
एक वर्ण शैली बंद टैग से पहले स्थान को उसके बाद हटाएं (\f*, \x*, \fe* को अनदेखा करता है)
(\s)(\+?((?!(f|x|fe))\S)**)#\2\1
17.52 sec /36.12 sec
विराम चिह्न से पहले टैग से पहले स्थान हटाएं
( )(\[a-z0-9*]+)([\p{P}-[*]])#\2\3
20.45 sec /40.69 sec
हालाँकि यह कई दिनों से क्रैश नहीं हुआ है, फिर भी मैंने एक Event फ़ाइल संलग्न की है।
उम्मीद है यह मददगार होगा,
anon180868
(संलग्नक RegExPalSpeed.evtx अनुपस्थित है)
Hi John+Wickberg,
Today, I ran the following regular expressions 2 times: once while RegEx Pal was running at top speed and once when it started slowing down.
My experience is that RegEx Pal starts slowing down after I run 2-3 patterns. When it starts slowing down, I close it, and then it returns to top speed.
Delete space before closing tag
( )(\[a-z0-9*]+*)#\2
15.74 sec/36.63 sec
Delete space before a character style closing tag to after it (ignores \f*, \x*, \fe*)
(\s)(\+?((?!(f|x|fe))\S)**)#\2\1
17.52 sec /36.12 sec
Delete space before tag preceding punctuation
( )(\[a-z0-9*]+)([\p{P}-[*]])#\2\3
20.45 sec /40.69 sec
I have also attached an Event file even though it hasn’t crashed in several days.
Hope this helps,
anon180868
(Attachment RegExPalSpeed.evtx is missing)
English से मशीन-अनुवादित