0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

リッチテキストにあるURLだけを抜き取る

Posted at

プロセスビルダーでリッチテキストフィールドに記入されているURLを抜くときのお話。

どうもURLに&があって、エンコードされているようです。

そのため、正常なURLにならないって。

解決策としては、強制的にエンコードされた文字を置き換えることです。

SUBSTITUTE(SUBSTITUTE(
RIGHT( LEFT( [Contact].Image__c, FIND(" alt", [Contact].Image__c) - 2 ), LEN( LEFT( [Contact].Image__c, FIND(" alt", [Contact].Image__c) - 2 ) ) - FIND("src=", [Contact].Image__c) - 4 )
,"&","&")
,"&","&")

ベストアンサーいただけました。ありがとうございます。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?