Select the search pattern in the Find dialog, head up to the Edit menu and 
select Copy as Styled Text

\d{3,5}

Voila :]


> On 2023-04-22, at 07:16, Kevin Shay <y2ks...@gmail.com> wrote:
> 
> Oops, sorry. No syntax highlighting in Gmail :)
> 
> On Fri, Apr 21, 2023 at 3:03 PM Kaveh Bazargan <ka...@rivervalley.io 
> <mailto:ka...@rivervalley.io>> wrote:
>> Kevin, small typo:
>> 
>> \d{2,] should be \d{2,}
>> 
>> ;-)
>> 
>> On Fri, 21 Apr 2023 at 19:58, Kevin Shay <y2ks...@gmail.com 
>> <mailto:y2ks...@gmail.com>> wrote:
>>> If you only want to apply this to figures of a certain length (i.e. 3 or 
>>> more digits) so it would skip things like "3d" or 'B2B" or "23AndMe", you 
>>> can use curly brackets to specify a number of occurrences, like:
>>> 
>>> \d{2,]  <--matches 2 or more digits
>>> \d{3,5} <--matches 3 to 5 digits
>>> 
>>> Kevin
>>> 
>>> On Fri, Apr 21, 2023 at 2:09 PM Neil Faiman <neil.goo...@faiman.org 
>>> <mailto:neil.goo...@faiman.org>> wrote:
>>>> So you want to find all occurrences of a digit immediately followed by a 
>>>> letter and insert a space between them?
>>>> 
>>>> Get the search dialog. Check the Grep box. Clear the Case sensitive box.
>>>> 
>>>> Find: (\d)([a-z])
>>>> Replace: \1 \2
>>>> 
>>>> Click the Replace All button.
>>>> 
>>>> Detailed explanation:
>>>> \d matches any digit.
>>>> [a-z] matches any letter.
>>>> \d[a-z] would match a digit immediately followed by a letter. 
>>>> Parenthesizing the two parts of the search string, (\d)([a-z]) does the 
>>>> same search, but when it finds a match, it “captures” the substrings that 
>>>> match the parenthesized components — I,e, the digit and the letter.
>>>> In the replacement string, \1 and \2 stand for the captured substrings 
>>>> that match the parenthesized sub patterns, i.e., the digit and the letter.
>>>> So the replacement string \1 \2 stands for the matched digit, a space, and 
>>>> the matched letter.
>>>> 
>>>> So if your input text is 123XyZ, (\d) matches the 3 and assigns it to \1, 
>>>> ([a-z]) matches the X and assigns it to \2, and the the string 3X is 
>>>> replaced by 3 X.
>>>> 
>>>> Regards,
>>>> Neil Faiman
>>>> 
>>>>> On Apr 21, 2023, at 1:47 PM, 'Andy Nickless' via BBEdit Talk 
>>>>> <bbedit@googlegroups.com <mailto:bbedit@googlegroups.com>> wrote:
>>>>> 
>>>>> Forgive the level 0 question, but I want to find instances in a simple 
>>>>> text document where various figures have got up against some text, with 
>>>>> no space between them. (For example 123Xyz).
>>>>> I want to keep the figures the same, and the following text the same, but 
>>>>> put a word space between them. (For example 123 Xyz).
>>>>> 
>>>> 
>>>> 
>>>> -- 
>>>> This is the BBEdit Talk public discussion group. If you have a feature 
>>>> request or need technical support, please email "supp...@barebones.com 
>>>> <mailto:supp...@barebones.com>" rather than posting here. Follow @bbedit 
>>>> on Twitter: <https://twitter.com/bbedit>
>>>> --- 
>>>> You received this message because you are subscribed to the Google Groups 
>>>> "BBEdit Talk" group.
>>>> To unsubscribe from this group and stop receiving emails from it, send an 
>>>> email to bbedit+unsubscr...@googlegroups.com 
>>>> <mailto:bbedit+unsubscr...@googlegroups.com>.
>>>> To view this discussion on the web visit 
>>>> https://groups.google.com/d/msgid/bbedit/BD13333E-702B-45C4-817D-1C7A41F2DB40%40faiman.org
>>>>  
>>>> <https://groups.google.com/d/msgid/bbedit/BD13333E-702B-45C4-817D-1C7A41F2DB40%40faiman.org?utm_medium=email&utm_source=footer>.
>>> 
>>> 
>>> -- 
>>> This is the BBEdit Talk public discussion group. If you have a feature 
>>> request or need technical support, please email "supp...@barebones.com 
>>> <mailto:supp...@barebones.com>" rather than posting here. Follow @bbedit on 
>>> Twitter: <https://twitter.com/bbedit>
>>> --- 
>>> You received this message because you are subscribed to the Google Groups 
>>> "BBEdit Talk" group.
>>> To unsubscribe from this group and stop receiving emails from it, send an 
>>> email to bbedit+unsubscr...@googlegroups.com 
>>> <mailto:bbedit+unsubscr...@googlegroups.com>.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/bbedit/CAKi-cftg1Tjh%2BVjYj6vkPx%3DNAxZFzSov3-SnO84jF7zeqLgTgw%40mail.gmail.com
>>>  
>>> <https://groups.google.com/d/msgid/bbedit/CAKi-cftg1Tjh%2BVjYj6vkPx%3DNAxZFzSov3-SnO84jF7zeqLgTgw%40mail.gmail.com?utm_medium=email&utm_source=footer>.
>> 
>> 
>> -- 
>> Kaveh Bazargan PhD
>> Director
>> River Valley Technologies <http://rivervalley.io/> ● Twitter 
>> <https://twitter.com/rivervalley1000> ● LinkedIn 
>> <https://www.linkedin.com/in/bazargankaveh/> ● ORCID 
>> <https://orcid.org/0000-0002-1414-9098> ● @kaveh1000@mastodon.social 
>> <https://mastodon.social/@kaveh1000>
>> Accelerating the Communication of Research
>>  
>> <https://www.linkedin.com/posts/bazargankaveh_ismte-innovation-award-recipient-kaveh-bazargan-activity-7039348552526921728-XAEB/?utm_source=share&utm_medium=member_desktop>
>>    
>> <https://rivervalley.io/gigabyte-wins-the-alpsp-scholarly-publishing-innovation-award-using-river-valleys-publishing-technology/>
>> 
>> -- 
>> This is the BBEdit Talk public discussion group. If you have a feature 
>> request or need technical support, please email "supp...@barebones.com 
>> <mailto:supp...@barebones.com>" rather than posting here. Follow @bbedit on 
>> Twitter: <https://twitter.com/bbedit>
>> --- 
>> You received this message because you are subscribed to the Google Groups 
>> "BBEdit Talk" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to bbedit+unsubscr...@googlegroups.com 
>> <mailto:bbedit+unsubscr...@googlegroups.com>.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/bbedit/CAJ2R9pjxtHLNBoAy_ba8MtkhTSRuvSt3ADmzY5c%2BCmapku4-Eg%40mail.gmail.com
>>  
>> <https://groups.google.com/d/msgid/bbedit/CAJ2R9pjxtHLNBoAy_ba8MtkhTSRuvSt3ADmzY5c%2BCmapku4-Eg%40mail.gmail.com?utm_medium=email&utm_source=footer>.
> 
> 
> -- 
> This is the BBEdit Talk public discussion group. If you have a feature 
> request or need technical support, please email "supp...@barebones.com" 
> rather than posting here. Follow @bbedit on Twitter: 
> <https://twitter.com/bbedit>
> --- 
> You received this message because you are subscribed to the Google Groups 
> "BBEdit Talk" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to bbedit+unsubscr...@googlegroups.com 
> <mailto:bbedit+unsubscr...@googlegroups.com>.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/bbedit/CAKi-cfvF2me%3DLGkLdyA0Jh52_drNZW8j5Bnqf9Jr1Wh_MPZ1kg%40mail.gmail.com
>  
> <https://groups.google.com/d/msgid/bbedit/CAKi-cfvF2me%3DLGkLdyA0Jh52_drNZW8j5Bnqf9Jr1Wh_MPZ1kg%40mail.gmail.com?utm_medium=email&utm_source=footer>.

-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "supp...@barebones.com" rather than 
posting here. Follow @bbedit on Twitter: <https://twitter.com/bbedit>
--- 
You received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/4F43F449-8B6E-4EC3-B4B3-3904FAE9B71A%40gmail.com.

Reply via email to