How can i move words around in a sentence using regex?

陌路散爱 提交于 2019-12-12 01:07:39

问题


So i have the following sentence: "How quickly daft jumping zebras vex." and i need to come up with a single regex expression that will transform that sentence into this: "vex zebras jumping daft quickly How." Can anyone please help me figure this out?


回答1:


As mentioned in the comments, regex is not meant for this, since it can't be known how many words there will be. But with your limited example, this works:

^(\w+)\s+(\w+)\s+(\w+)\s+(\w+)\s+(\w+)\s+(\w+)\.$

Replace with

$6 $5 $4 $3 $2 $1.

Try it (press [Java]): http://fiddle.re/67kef



来源:https://stackoverflow.com/questions/21532726/how-can-i-move-words-around-in-a-sentence-using-regex

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!