i have a string .
i want to reverse the letters in every word not reverse the words order.
like - 'my string'
should be
'ym gnirts'
|
|
i have a string . i want to reverse the letters in every word not reverse the words order. like - 'my string' should be 'ym gnirts'
|
||
|
|
|
|
This should work:
Or as a one-liner:
|
||||||
|
|
|
This is considerably faster than reversing every string of the array after exploding the original string. |
|||
|
|
|
Functionified:
|
||
|
|
|
|
This should do the trick:
|
||||
|
|
|
I would do:
|
||
|
|