SAP R/3 форум ABAP консультантов
Russian ABAP Developer's Club

Home - FAQ - Search - Memberlist - Usergroups - Profile - Log in to check your private messages - Register - Log in - English
Blogs - Weblogs News

Как удалить из строки все символы кроме цифр?



 
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP
View previous topic :: View next topic  
Author Message
corsair
Участник
Участник



Joined: 06 Feb 2008
Posts: 37

PostPosted: Thu May 13, 2010 3:20 pm    Post subject: Как удалить из строки все символы кроме цифр? Reply with quote

Привет!
Вопрос в заголовке.
Back to top
View user's profile Send private message
XXX_:)
Аналитик
Аналитик


Age: 40
Joined: 01 Feb 2008
Posts: 387
Location: Воронеж

PostPosted: Thu May 13, 2010 3:41 pm    Post subject: Reply with quote

Недавно обсуждалось, возможно подойдет одно из предложений.
http://www.sapnet.ru/viewtopic.php?t=3675

_________________
Hормальные люди делают вещи намного более безумные чем всё, что делают сумасшедшие (c) С.Лем
Back to top
View user's profile Send private message Blog
vga
Мастер
Мастер


Age: 90
Joined: 04 Oct 2007
Posts: 1218
Location: Санкт-Петербург

PostPosted: Thu May 13, 2010 4:41 pm    Post subject: Reply with quote

Ну еще варианты:

Удаление всех не цифровых символов.

Code:
DATA: str(30) TYPE C VALUE '12qwe34rty56ui78 90',
      n TYPE i.

DESCRIBE FIELD str LENGTH n IN CHARACTER MODE.

WHILE NOT n IS INITIAL.
  n = n - 1.
  CHECK str+n(1) NA ' 1234567890'.
  CLEAR str+n(1).
ENDWHILE.

CONDENSE str NO-GAPS.
WRITE / str.


Оставить цифры с разделителями.

Code:
DATA: str(100) TYPE C VALUE ' First:123,456,789.99.,fdg, ( Diff:1.44. ) sum-33.',
      IsDig TYPE C,
      n TYPE i.

DESCRIBE FIELD str LENGTH n IN CHARACTER MODE.

WHILE NOT n IS INITIAL.
  n = n - 1.
  IF str+n(1) CA '1234567890'.
    IsDig = 'X'.
  ELSEIF NOT IsDig IS INITIAL AND str+n(1) NA '.,1234567890'.
    CLEAR IsDig.
  ENDIF.
  IF IsDig IS INITIAL.
    CLEAR str+n(1).
  ENDIF.
ENDWHILE.

CONDENSE str.
WRITE / str.

_________________
Молитва - это запрос разработчику на изменение кода программы.
Back to top
View user's profile Send private message Blog Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP All times are GMT + 4 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


All product names are trademarks of their respective companies. SAPNET.RU websites are in no way affiliated with SAP AG.
SAP, SAP R/3, R/3 software, mySAP, ABAP, BAPI, xApps, SAP NetWeaver and any other are registered trademarks of SAP AG.
Every effort is made to ensure content integrity. Use information on this site at your own risk.