lets say i have this variable
var image = "image.jpg";
I'm trying to split the content of the variable image and insert _thumbs into it to get something like image_thumbs.jpg.
How do i go about this? Many Thanks.
|
lets say i have this variable
I'm trying to split the content of the variable image and insert _thumbs into it to get something like How do i go about this? Many Thanks. |
||||
|
|
Or, just for fun, a much less readable but shorter solution using a regex:
|
||||
|
|||
|
Here is the solution Way 1
Way 2
|
|||||
|
|
If the file name can contain multiple dots, you need to take the last of it. You can use Regex to do it:
|
|||
|
|