#hi effect
1 messages · Page 1 of 1 (latest)
this matches
'''''hHHHhhHhhIIiIIIIiI' as well
should be
'[Hh]+[Ii]+'
or for only hi's
'[Hh][Ii]'
why's this not working for me :(
it doesnt work for me too
@silver flare do u know why
@plush hinge im sure you have checked already, but could it be that you are not using the Regex input?
@plush hinge hmm perhaps try out talhoid's method-
May i ask, if other regex rules work for you?
you could also use the regular text replace, but that would make it case sensitive.
Replace: ˗ˏˋ Hi ˎˊ˗
yes others work for me, the celcius one works
its okie, thanks i usually say "hi" anyways
you should try and fix it on ur client tho, lmk when its fixed
Find: '+([H|h])+([I|i])+'
a number of minor regex confusions with this
i’d do Find: *[hH][iI]*
(using the asterisks as the trigger will also allow you to use (ctrl+a then) ctrl+i instead of typing them)
what is the point of the first asterisk
To me it made more sense visibly
Find: \b[hH] [iI]\b
Replace: ˗ˏˋ Hi ˎˊ˗
Makes it so that it only replaces ˗ˏˋ Hi ˎˊ˗ etc on its own and not in the middle of a word ex anyt˗ˏˋ Hi ˎˊ˗ ng
yay
˗ˏˋ Hi ˎˊ˗