for example c:\55.bmp (3,4) (45,7)
I want to get the filepath which is c:\55.bmp and the numbers 3 4 45 and 7
Thank you!!!
|
for example c:\55.bmp (3,4) (45,7) I want to get the filepath which is c:\55.bmp and the numbers 3 4 45 and 7 Thank you!!! |
|||||
|
|
This pattern will match "c:\55.bmp (3,4) (45,7)" with subgroups: $1 = C:\55.bmp $2 = 3 $3 = 4 $4 = 45 $5 = 7 |
|||||||||||||
|