View previous topic :: View next topic |
Author |
Message |
Haags
Joined: 24 Aug 2011 Posts: 6
|
Posted: Tue Dec 22, 2015 8:18 pm Post subject: Delete several dots "..." within the prefix |
|
|
How can i delete several dots within a string ?
As the dot has Special meaning in PFrank, i was not yet able to find out, how to define a deletion of dots.
Example:
OLD:
How to make .....URL
NEW:
How to make.URL
thx, stefan |
|
Back to top |
|
 |
admin Site Admin
Joined: 09 Mar 2007 Posts: 448 Location: Canada
|
Posted: Sat Jan 02, 2016 2:23 am Post subject: |
|
|
Sorry Stefan - I was away.
Yes you can delete dots by escaping them with a backslash in the search string.
Here's an example that will change 2 to 9 consecutive dots to 1 (don't copy the single quotes):
Row: 1
Search: '\.{2,9}'
Replace: '.'
Peter. |
|
Back to top |
|
 |
|