c# - Replace values in string -
i looking find matches in string, perform action on match, , replace original match.
for example finding @yahoo in string, looking on matching after ampersand first white space. of course there can multiple values match on in single string each match.
i'm thinking regex not sure on matching on after ampersand first white space (the regex expression this?). or other easier way of doing this?
for this:
looking on matching after ampersand first white space
regexp @\s+.
reference: character classes.
Comments
Post a Comment