आप . से : में बदलाव करने के लिए find (या RegEx Pal) में एक नियमित अभिव्यक्ति (regular expression) का उपयोग कर सकते हैं:
find में आपको regex: से शुरू करना होगा:
यहाँ एक संभावित खोज है:
regex:(?<=\\fr \d+)\.(?=\d)
यह कहता है, एक नियमित अभिव्यक्ति खोज करें जो एक बिंदु (period) के लिए हो जो \fr और एक या अधिक अंकों से पहले हो, और एक अंक के बाद हो।
replace स्ट्रिंग बस कॉलन (colon) होगी।
यदि आप किसी भी बिंदु को खोजना चाहते हैं जो अंकों से पहले हो और अंक के बाद हो, तो आप \\fr को हटा सकते हैं।
You can use a regular expression in the find (or in RegEx Pal) to make the change from . to :
In the find you must start with regex:
Here is one possible search:
regex:(?<=\\fr \d+)\.(?=\d)
This says, do a regular expression search for a period preceded by \fr and one or more digits, and followed by a digit.
The replace string would be just the colon.
If you wanted to find any period preceded by a digits and followed by a digit you could remove the \\fr
English से मशीन-अनुवादित