I have a string
String ="...blah..."
I want to filter this string from 3 dots in the front and 3 in back to have like follows
String = "blah".
Whats the most effecient way to perform this sort of operation?
|
I have a string
I want to filter this string from 3 dots in the front and 3 in back to have like follows
Whats the most effecient way to perform this sort of operation? |
|||||
|
|
Use
You can also try the regex-version (not sure which will perform better):
Or of it is exactly 3 dots from the back and 3 from the front, use
|
|||
|
|
|
If you always have 3 dots and beginning and end, use
|
||||
|
|