Use your full CCC email address as your username and the password used for email and Carteret Compass. You may need to create your password at the Password Reset Portal on our Web Site.
how to distinguish AAA:BBB and AAA:BBB:CCC using regular expression? Asked 13 years ago Modified 13 years ago Viewed 612 times
s = "aaa-bbb-ccc-ddd-eee-fff-ggg-hhh-iii-jjj-kkk-lll-mmm-nnn-ooo-ppp-qqq-rrr-sss" where I want to change every second occurrence of "-" to "+" (or maybe every third, fourth, etc. occurrence or, in other words, I'd prefer a generic solution). Is it possible to do what I want with a single regexp substitution, or have I to parse the string "manually"?