Re: Regex for (A) and (B) to find in Bus Stop (A) or (B)

2021-11-03 Thread David G. Johnston
On Wednesday, November 3, 2021, David G. Johnston <
david.g.johns...@gmail.com> wrote:

> On Wednesday, November 3, 2021, Shaozhong SHI 
> wrote:
>
>> What is the regex for (A) and (B) to find in Bus Stop (A) or (B)?
>>
>
> Not tested…
>
> ^Bus\sStop\s\((\w)\)\sor\((\w)\)$
>
> The \s can just written as a space though the above seems clearer in email
> (though it allows for non-space whitespace too)
>

Sorry, the actual matcher probably should be something like:
[^)]+

So it matches everything except the closing paren.  If the value can
contain a paren its more complicated and I’d need to test and check to
figure it out.

David J.


Re: Regex for (A) and (B) to find in Bus Stop (A) or (B)

2021-11-03 Thread David G. Johnston
On Wednesday, November 3, 2021, Shaozhong SHI 
wrote:

> What is the regex for (A) and (B) to find in Bus Stop (A) or (B)?
>

Not tested…

^Bus\sStop\s\((\w)\)\sor\((\w)\)$

The \s can just written as a space though the above seems clearer in email
(though it allows for non-space whitespace too)

David J.


Regex for (A) and (B) to find in Bus Stop (A) or (B)

2021-11-03 Thread Shaozhong SHI
What is the regex for (A) and (B) to find in Bus Stop (A) or (B)?

Regards, David


Regex for (A) and (B) to find in Bus Stop (A) or (B)

2021-11-03 Thread Shaozhong SHI
What is the regex for (A) and (B) to find in Bus Stop (A) or (B)?

Regards, David