|
flipwon Beginner
Joined: 09 May 2008 Posts: 10
|
Posted: Sun May 18, 2008 2:35 am
Coloring one word, of one line, one color. |
How would i color a word, following another word one solid color
IE. the small man
and man is the color red, only when it follows the word small, though |
|
|
|
Vijilante SubAdmin
Joined: 18 Nov 2001 Posts: 5182
|
Posted: Sun May 18, 2008 2:58 am |
#REGEX {(?<=small )man\b} {#CW red}
|
|
_________________ The only good questions are the ones we have never answered before.
Search the Forums |
|
|
|
Fang Xianfu GURU
Joined: 26 Jan 2004 Posts: 5155 Location: United Kingdom
|
Posted: Sun May 18, 2008 3:02 am |
#trig {small man} {#sub "small <color red>man</color>"}
#regex {(?<=small )man} {#cw red}
Your choice.
Ninja :( |
|
|
|
|
|