Regular expression

English main discussion
Post Reply
  • Author
  • Message
Offline
Posts: 282
Joined: Thu Sep 10, 2015 9:53 am
Location: Deutschland

Regular expression

Post by sexy96 »

Mam takie 3 zdania:

1.If Right(WybranaLinia2(NrLinii2) Then
2.If Right(WybranaLinia2(NrLinii2), Len(WybranaLinia2(NrLinii2)) Then
3.(Right)Len

i chciałbym wyszukać poprzez (Znajdź->Wyrażenia regularne) te, które zawiera: 'Right(' oraz 'Len(' w jednym zdaniu.

Nie wiem co tu dalej wpisać?
Right\( ????????????

KDJ
Offline
Posts: 1949
Joined: Sat Mar 06, 2010 7:40 pm
Location: Poland

Post by KDJ »

sexy96

Code: Select all

(?-s)(^.*Right\(.*Len\(.*$|^.*Len\(.*Right\(.*$)

Offline
Posts: 282
Joined: Thu Sep 10, 2015 9:53 am
Location: Deutschland

Post by sexy96 »

Dziękuję
Post Reply