Re: Need easy way to make first letter of each line upper case

2021-10-29 Thread David G Wagner
You replace the ^ + with ^\s+ which would handle both spaces and tabs if there… ;) Wags ;) WagsWorld Hebrews 4:15 Ph(primary) : 408-914-1341 Ph(secondary): 408-761-7391 On Oct 29, 2021, 04:03 -0700, Satomi Yoneki , wrote: > > > I meant the number of the line, as in the numbers in the left hand co

Re: Quick question about find / replace in selection

2021-10-29 Thread Patrick Woolsey
On 10/29/21 at 5:37 AM, barresi...@gmail.com (ian barres) wrote: > Is there a way to find and replace a word only in the selected text in > BBEdit? For example, if I have a large document, is that possible to select > only one function which the matching words will be replaced in? Yes :-) and

Re: Need easy way to make first letter of each line upper case

2021-10-29 Thread Satomi Yoneki
I meant the number of the line, as in the numbers in the left hand column. Those numbers are Line Numbers. The lines typically look like this: "so, it was" Or, " so, it was"  Which is something else I'd like to have a Grep for: removing spaces at the beginning of all lines. Please t

Re: Need easy way to make first letter of each line upper case

2021-10-29 Thread Iain
If you open up the Find/Replace and use this grep in the find box: ^(\w) and this replacement in the Replace box: \U\1\E and then you can do Replace All If you want to include the start of sentences that may have spaces in front of them (like the classic indent for a paragraph), you can use:

Quick question about find / replace in selection

2021-10-29 Thread ian barres
Is there a way to find and replace a word only in the selected text in BBEdit? For example, if I have a large document, is that possible to select only one function which the matching words will be replaced in? Would it be "Use Selection for Find" or "Use Selection for Replace"? I looked in th