WoWInterface

WoWInterface (https://www.wowinterface.com/forums/index.php)
-   Lua/XML Help (https://www.wowinterface.com/forums/forumdisplay.php?f=16)
-   -   string.gsub help (https://www.wowinterface.com/forums/showthread.php?t=45496)

Starix 12-22-12 09:54 PM

string.gsub help
 
Hello, help me with regular expressions.
How to make that at the beginning of the word and after each 3 symbols was "!" ?

Example: !Hel!lo !Wor!ld. !Tes!t !lua!.

thx.

SDPhantom 12-23-12 12:46 AM

I can see this as a series of 3 string.gsub() calls:
Code:

("Hello World. Test lua."):gsub("(%S%S%S)","%1!"):gsub("(%s)(%S)","%1!%2"):gsub("^(%S)","!%1");
The first call processes splitting the words into groups of 3 letters separated by "!". This needs to be done first as the other replacements will screw up the grouping pattern. The second pattern handles the start of words by inserting the separator between any occurrence of a space followed by a non-space. The third handles an exception that would rise when the string starts with a non-space character.


All times are GMT -6. The time now is 08:21 AM.

vBulletin © 2024, Jelsoft Enterprises Ltd
© 2004 - 2022 MMOUI