vb6.0/vba [vb6.0/vba] 문자(텍스트) 좌우 뒤집기 / 좌우 바꾸기
페이지 정보
본문
간혹 문자(글자)를 좌우로 뒤집고싶을때가 있습니다.
그럴땐 StrReverse 함수를 사용하시면 됩니다.
debug.? StrReverse("C:\Users\Administrator\Desktop\NaverIN") Result:NIrevaN\potkseD\rotartsinimdA\sresU\:C |
Excel 에서 사용 예:)
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address <> [A1].Address Then Exit Sub
Target.Next.Value = StrReverse(Target.Value)
End Sub
- 이전글[vb.net/vb6.0/vba] 유닉스 타임스템프(Timestamp) 사용하기 19.08.04
- 다음글[vb6.0/vba] 모든 조합(중복) 19.08.04
댓글목록
등록된 댓글이 없습니다.